123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317 |
- <?php
- namespace Qii\Driver\Pdo;
- \Qii\Autoloader\Import::requires(dirname(dirname(__FILE__)) . DS . 'Response.php');
- class Driver extends \Qii\Driver\Base implements \Qii\Driver\Intf
- {
- const VERSION = '1.2';
- private static $_instance;
- protected $connection;
- private $sysConfigure;
- private $rs;
- public $db;
- /**
- * 是否开启调试
- *
- * @var BOOL
- */
- public $_debugSQL = true;
- /**
- * 执行SQL的列表
- *
- * @var Array
- */
- public $_exeSQL = array();
- /**
- * 查询次数
- *
- * @var unknown_type
- */
- public $queryTimes = 0;
- /**
- * 查询耗时
- *
- * @var INT
- */
- public $querySeconds = array();
- /**
- * 最后一次执行的SQL
- *
- * @var unknown_type
- */
- private $sql;
- /**
- * 是否开启执行SQL的时间
- *
- * @var BOOL
- */
- public $_debugTime = false;
- public $_errorInfo = array();
- /**
- * @var string $charset 数据库默认编码
- */
- public $charset = 'UTF8';
- /**
- * 当前使用的db信息
- */
- public $useDB;
- /**
- * @var string $markKey debug信息保存用的key
- */
- public $markKey = '__model';
- /**
- * @var string $response Response对象
- */
- public $response;
- /**
- * 初始化
- * @param \Qii_Driver_ConnIntf $connection 数据库连接
- */
- public function __construct(\Qii\Driver\ConnIntf $connection)
- {
- parent::__construct();
- $this->connection = $connection;
- $this->sysConfigure = $this->connection->getDBInfo();
- $this->useDB = $this->sysConfigure['master']['db'];
- $this->response = new \Qii\Driver\Response();
- }
- /**
- * 用户直接输出这个实例化的类后会输出当前类的名称
- *
- * @return String
- */
- public function __toString()
- {
- return get_class($this);
- }
- /**
- * 查询预处理
- * @var string $sql 执行的sql语句
- */
- public function setQuery($sql)
- {
- $this->rs = $rs = $this->query($sql);
- return $rs;
- }
- /**
- * 查询
- * @var string $sql 执行的sql语句
- */
- public function query($sql)
- {
- /**
- * 如果调试SQL的话就启用时间的记录
- */
- if ($this->_debugSQL) {
- $startTime = microtime(true);
- }
- $this->sql = $sql;
- $this->db['CURRENT'] = $this->connection->getConnectionBySQL($sql);
- $this->db['CURRENT']->setAttribute(\PDO::MYSQL_ATTR_USE_BUFFERED_QUERY, true);
- $this->db['CURRENT']->setAttribute(\PDO::ATTR_ERRMODE, \PDO::ERRMODE_WARNING);
- $this->db['CURRENT']->query('set names utf8');
- $rs = $this->db['CURRENT']->query($sql);
- $this->setError();
- if (!$rs) {
- $error = $this->getError('error');
- return \Qii::setError(false, __LINE__, 1509, $sql, $error[2] == '' ? 'NULL' : $error[2]);
- }
- $rs->setFetchMode(\PDO::FETCH_ASSOC);
- /**
- * 如果调试SQL的话就启用时间的记录
- */
- if ($this->_debugSQL) {
- $endTime = microtime(true);
- $costTime = sprintf('%.4f', ($endTime - $startTime));
- $this->querySeconds[$this->queryTimes]['sql'] = $sql;
- $this->querySeconds[$this->queryTimes]['costTime'] = $costTime;
- $this->querySeconds[$this->queryTimes]['startTime'] = $startTime;
- $this->querySeconds[$this->queryTimes]['endTime'] = $endTime;
- }
- $this->queryTimes++;
- return $rs;
- }
- /**
- * 获取一行
- *
- * @param Resource $rs
- * @return Array
- */
- public function fetch($rs = null)
- {
- if (!$rs) return $this->rs->rech();
- return $rs->fetch();
- }
- /**
- * 执行SQL
- *
- * @param String $sql
- * @return Int
- */
- public function exec($sql)
- {
- $this->rs = $this->query($sql);
- return $this->affectedRows();
- }
- /**
- * 设置获取数据的类型
- *
- */
- public function setFetchMode()
- {
- $this->rs->setFetchMode(PDO::FETCH_ASSOC);
- }
- /**
- * 获取一行
- * @var string $sql 获取一行
- * @return array 返回数据
- */
- public function getRow($sql)
- {
- if (!$this->sysConfigure['driver'] == 'mssql' && !preg_match("/LIMIT(\s){1,}(\d){1,},(\s){0,}(\d){1,}/ui", $sql) && !preg_match("/LIMIT(\s){1,}(\d){1,}/ui", $sql)) {
- $sql = $sql . " LIMIT 1";
- } else if ($this->sysConfigure['driver'] == 'mssql' && !preg_match("/^SELECT(\s)TOP(\s)(\d){1,}/i", $sql)) {
- $sql = preg_replace("/^SELECT(\s)/i", "SELECT TOP 1 ", $sql);
- }
- $this->rs = $rs = $this->setQuery($sql);
- return $rs->fetch();
- }
- /**
- * 获取一列
- * @var string $sql 需要获取一列的sql语句
- * @return strin | bool 返回其中一列或者是false
- */
- public function getOne($sql)
- {
- $rs = $this->setQuery($sql);
- if ($rs) {
- return $rs->fetchColumn();
- }
- return false;
- }
- /**
- * 获取所有的行
- * @var string $sql 需要获取所有行的sql语句
- * @return array
- */
- public function getAll($sql)
- {
- $this->rs = $rs = $this->setQuery($sql);
- return $rs->fetchAll();
- }
- /**
- * 事务处理
- */
- public function transaction()
- {
- $this->db['CURRENT']->beginTransaction();
- }
- /**
- * 事务提交
- */
- public function commit()
- {
- $this->db['CURRENT']->commit();
- }
- /**
- * 事务回滚
- */
- public function rollback()
- {
- $this->db['CURRENT']->rollBack();
- }
- /**
- * 影响的行数
- *
- * @return Int
- */
- public function affectedRows()
- {
- if (!$this->rs) return false;
- return $this->rs->rowCount();
- }
- /**
- * 最后插入到数据库的自增长ID
- *
- * @return Int
- */
- public function lastInsertId()
- {
- return $this->db['CURRENT']->lastInsertId();
- }
- /**
- * 获取最后一次出错的信息
- *
- * @return Array
- */
- public function getError($key = '')
- {
- $errorInfo = array_pop($this->_errorInfo);
- if ($errorInfo) {
- //将错误加回来
- array_push($this->_errorInfo, $errorInfo);
- if (!empty($key)) {
- return $errorInfo[$key];
- }
- return $errorInfo;
- }
- return null;
- }
- /**
- * 是否有错,有错误的话存储错误
- *
- */
- public function setError()
- {
- if ($this->connection->getConnectionBySQL($this->sql)->errorCode() != '00000') {
- $this->_errorInfo[$this->queryTimes]['sql'] = $this->sql;
- $this->_errorInfo[$this->queryTimes]['error'] = $this->iconv($this->connection->getConnectionBySQL($this->sql)->errorInfo());
- $this->response = \Qii\Driver\Response::Fail('pdo.error', $this->_errorInfo);
- }
- }
- /**
- * 是否执行出错
- *
- * @return Bool
- */
- public function isError()
- {
- if (!$this->rs) {
- return true;
- }
- if ($this->connection->getConnectionBySQL($this->sql)->errorCode() != '00000') {
- return true;
- }
- return false;
- }
- /**
- * 返回response对象
- *
- * @return Bool
- */
- public function getResponse()
- {
- return $this->response;
- }
- }
|