You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							597 lines
						
					
					
						
							20 KiB
						
					
					
				
			
		
		
	
	
							597 lines
						
					
					
						
							20 KiB
						
					
					
				<?php | 
						|
/** | 
						|
 * Connection class file | 
						|
 * | 
						|
 * @author Qiang Xue <qiang.xue@gmail.com> | 
						|
 * @link http://www.yiiframework.com/ | 
						|
 * @copyright Copyright © 2008-2012 Yii Software LLC | 
						|
 * @license http://www.yiiframework.com/license/ | 
						|
 */ | 
						|
 | 
						|
namespace yii\db\dao; | 
						|
 | 
						|
/** | 
						|
 * Connection represents a connection to a database via [PDO](http://www.php.net/manual/en/ref.pdo.php). | 
						|
 * | 
						|
 * Connection works together with [[Command]], [[DataReader]] and [[Transaction]] | 
						|
 * to provide data access to various DBMS in a common set of APIs. They are a thin wrapper | 
						|
 * of the [[PDO PHP extension]](http://www.php.net/manual/en/ref.pdo.php). | 
						|
 * | 
						|
 * To establish a DB connection, set [[dsn]], [[username]] and [[password]], and then | 
						|
 * call [[open]] or set [[active]] to be true. | 
						|
 * | 
						|
 * The following example shows how to create a Connection instance and establish | 
						|
 * the DB connection: | 
						|
 * | 
						|
 * ~~~ | 
						|
 * $connection = \yii\db\dao\Connection::create($dsn, $username, $password); | 
						|
 * $connection->open();  // same as: $connection->active = true; | 
						|
 * ~~~ | 
						|
 * | 
						|
 * After the DB connection is established, one can execute a SQL statement like the following: | 
						|
 * | 
						|
 * ~~~ | 
						|
 * $command = $connection->createCommand('SELECT * FROM tbl_post'); | 
						|
 * $command->execute();   // a non-query SQL statement execution | 
						|
 * // or execute an SQL query and return the results as an array | 
						|
 * $rows = $command->queryAll(); | 
						|
 * ~~~ | 
						|
 * | 
						|
 * One can also do prepared SQL execution and bind parameters to the prepared SQL: | 
						|
 * | 
						|
 * ~~~ | 
						|
 * $command = $connection->createCommand('SELECT * FROM tbl_post WHERE id=:id'); | 
						|
 * $command->bindValue(':id', $_GET['id']); | 
						|
 * $post = $command->query(); | 
						|
 * ~~~ | 
						|
 * | 
						|
 * DB transaction may also be used for DBMS that supports it. For example, | 
						|
 * | 
						|
 * ~~~ | 
						|
 * $transaction = $connection->beginTransaction(); | 
						|
 * try { | 
						|
 *     $connection->createCommand($sql1)->execute(); | 
						|
 *     $connection->createCommand($sql2)->execute(); | 
						|
 *     // ... executing other SQL statements ... | 
						|
 *     $transaction->commit(); | 
						|
 * } | 
						|
 * catch(Exception $e) { | 
						|
 *     $transaction->rollBack(); | 
						|
 * } | 
						|
 * ~~~ | 
						|
 * | 
						|
 * Since Connection extends from [[\yii\base\ApplicationComponent]], it can | 
						|
 * be used as an application component and be configured in application configuration, | 
						|
 * like the following, | 
						|
 * | 
						|
 * ~~~ | 
						|
 * array( | 
						|
 *     'components' => array( | 
						|
 *         'db' => array( | 
						|
 *             'class' => '\yii\db\dao\Connection', | 
						|
 *             'dsn' => 'mysql:host=127.0.0.1;dbname=demo', | 
						|
 *             'username' => 'root', | 
						|
 *             'password' => '', | 
						|
 *             'charset' => 'utf8', | 
						|
 *         ), | 
						|
 *     ), | 
						|
 * ) | 
						|
 * ~~~ | 
						|
 * | 
						|
 * @author Qiang Xue <qiang.xue@gmail.com> | 
						|
 * @since 2.0 | 
						|
 */ | 
						|
class Connection extends \yii\base\ApplicationComponent | 
						|
{ | 
						|
	/** | 
						|
	 * @var string the Data Source Name, or DSN, contains the information required to connect to the database. | 
						|
	 * Please refer to the [PHP manual](http://www.php.net/manual/en/function.PDO-construct.php) on | 
						|
	 * the format of the DSN string. | 
						|
	 * | 
						|
	 * Note that if your database is using GBK or BIG5 charset, we highly recommend you | 
						|
	 * to upgrade to PHP 5.3.6+ and specify charset via DSN like the following to prevent | 
						|
	 * from hacking: `mysql:dbname=mydatabase;host=127.0.0.1;charset=GBK;`. | 
						|
	 */ | 
						|
	public $dsn; | 
						|
	/** | 
						|
	 * @var string the username for establishing DB connection. Defaults to empty string. | 
						|
	 */ | 
						|
	public $username = ''; | 
						|
	/** | 
						|
	 * @var string the password for establishing DB connection. Defaults to empty string. | 
						|
	 */ | 
						|
	public $password = ''; | 
						|
	/** | 
						|
	 * @var array PDO attributes (name=>value) that should be set when calling [[open]] | 
						|
	 * to establish a DB connection. Please refer to the | 
						|
	 * [PHP manual](http://www.php.net/manual/en/function.PDO-setAttribute.php) for | 
						|
	 * details about available attributes. | 
						|
	 */ | 
						|
	public $attributes; | 
						|
	/** | 
						|
	 * @var \PDO the PHP PDO instance associated with this DB connection. | 
						|
	 * This property is mainly managed by [[open]] and [[close]] methods. | 
						|
	 * When a DB connection is active, this property will represent a PDO instance; | 
						|
	 * otherwise, it will be null. | 
						|
	 */ | 
						|
	public $pdo; | 
						|
	/** | 
						|
	 * @var integer number of seconds that table metadata can remain valid in cache. | 
						|
	 * Defaults to -1, meaning schema caching is disabled. | 
						|
	 * Use 0 to indicate that the cached data will never expire. | 
						|
	 * | 
						|
	 * Note that in order to enable schema caching, a valid cache component as specified | 
						|
	 * by [[schemaCacheID]] must be enabled. | 
						|
	 * @see schemaCachingExclude | 
						|
	 * @see schemaCacheID | 
						|
	 */ | 
						|
	public $schemaCachingDuration = -1; | 
						|
	/** | 
						|
	 * @var array list of tables whose metadata should NOT be cached. Defaults to empty array. | 
						|
	 * @see schemaCachingDuration | 
						|
	 */ | 
						|
	public $schemaCachingExclude = array(); | 
						|
	/** | 
						|
	 * @var string the ID of the cache application component that is used to cache the table metadata. | 
						|
	 * Defaults to 'cache'. | 
						|
	 * @see schemaCachingDuration | 
						|
	 */ | 
						|
	public $schemaCacheID = 'cache'; | 
						|
	/** | 
						|
	 * @var integer number of seconds that query results can remain valid in cache. | 
						|
	 * Defaults to -1, meaning query caching is disabled. | 
						|
	 * Use 0 to indicate that the cached data will never expire. | 
						|
	 * | 
						|
	 * Note that in order to enable query caching, a valid cache component as specified | 
						|
	 * by [[queryCacheID]] must be enabled. | 
						|
	 * | 
						|
	 * The method [[cache()]] is provided as a convenient way of setting this property | 
						|
	 * and [[queryCachingDependency]] on the fly. | 
						|
	 * | 
						|
	 * @see cache | 
						|
	 * @see queryCachingDependency | 
						|
	 * @see queryCacheID | 
						|
	 */ | 
						|
	public $queryCachingDuration = -1; | 
						|
	/** | 
						|
	 * @var CCacheDependency the dependency that will be used when saving query results into cache. | 
						|
	 * Defaults to null, meaning no dependency. | 
						|
	 * @see queryCachingDuration | 
						|
	 */ | 
						|
	public $queryCachingDependency; | 
						|
	/** | 
						|
	 * @var integer the number of SQL statements that need to be cached when they are executed next. | 
						|
	 * Defaults to 0, meaning the query result of the next SQL statement will NOT be cached. | 
						|
	 * Note that each time after executing a SQL statement (whether executed on DB server or fetched from | 
						|
	 * query cache), this property will be reduced by 1 until 0. | 
						|
	 * @see queryCachingDuration | 
						|
	 */ | 
						|
	public $queryCachingCount = 0; | 
						|
	/** | 
						|
	 * @var string the ID of the cache application component that is used for query caching. | 
						|
	 * Defaults to 'cache'. | 
						|
	 * @see queryCachingDuration | 
						|
	 */ | 
						|
	public $queryCacheID = 'cache'; | 
						|
	/** | 
						|
	 * @var string the charset used for database connection. The property is only used | 
						|
	 * for MySQL and PostgreSQL databases. Defaults to null, meaning using default charset | 
						|
	 * as specified by the database. | 
						|
	 * | 
						|
	 * Note that if you're using GBK or BIG5 then it's highly recommended to | 
						|
	 * update to PHP 5.3.6+ and to specify charset via DSN like | 
						|
	 * 'mysql:dbname=mydatabase;host=127.0.0.1;charset=GBK;'. | 
						|
	 */ | 
						|
	public $charset; | 
						|
	/** | 
						|
	 * @var boolean whether to turn on prepare emulation. Defaults to false, meaning PDO | 
						|
	 * will use the native prepare support if available. For some databases (such as MySQL), | 
						|
	 * this may need to be set true so that PDO can emulate the prepare support to bypass | 
						|
	 * the buggy native prepare support. Note, this property is only effective for PHP 5.1.3 or above. | 
						|
	 * The default value is null, which will not change the ATTR_EMULATE_PREPARES value of PDO. | 
						|
	 */ | 
						|
	public $emulatePrepare; | 
						|
	/** | 
						|
	 * @var boolean whether to log the values that are bound to a prepare SQL statement. | 
						|
	 * Defaults to false. During development, you may consider setting this property to true | 
						|
	 * so that parameter values bound to SQL statements are logged for debugging purpose. | 
						|
	 * You should be aware that logging parameter values could be expensive and have significant | 
						|
	 * impact on the performance of your application. | 
						|
	 */ | 
						|
	public $enableParamLogging = false; | 
						|
	/** | 
						|
	 * @var boolean whether to enable profiling for the SQL statements being executed. | 
						|
	 * Defaults to false. This should be mainly enabled and used during development | 
						|
	 * to find out the bottleneck of SQL executions. | 
						|
	 * @see getStats | 
						|
	 */ | 
						|
	public $enableProfiling = false; | 
						|
	/** | 
						|
	 * @var string the default prefix for table names. Defaults to null, meaning no table prefix. | 
						|
	 * By setting this property, any token like '{{tableName}}' in [[Command::text]] will | 
						|
	 * be replaced with 'prefixTableName', where 'prefix' refers to this property value. | 
						|
	 * For example, '{{post}}' becomes 'tbl_post', if 'tbl_' is set as the table prefix. | 
						|
	 */ | 
						|
	public $tablePrefix; | 
						|
	/** | 
						|
	 * @var array list of SQL statements that should be executed right after the DB connection is established. | 
						|
	 */ | 
						|
	public $initSQLs; | 
						|
	/** | 
						|
	 * @var array mapping between PDO drivers and schema classes. | 
						|
	 * The keys of the array are PDO driver names while the values the corresponding | 
						|
	 * schema class name or configuration. Please refer to [[\Yii::createComponent]] for | 
						|
	 * details on how to specify a configuration. | 
						|
	 * | 
						|
	 * This property is mainly used by [[getSchema]] when fetching the database schema information. | 
						|
	 */ | 
						|
	public $schemaMap = array( | 
						|
		'pgsql' => '\yii\db\dao\pgsql\Schema',     // PostgreSQL | 
						|
		'mysqli' => '\yii\db\dao\mysql\Schema',    // MySQL | 
						|
		'mysql' => '\yii\db\dao\mysql\Schema',     // MySQL | 
						|
		'sqlite' => '\yii\db\dao\sqlite\Schema',   // sqlite 3 | 
						|
		'sqlite2' => '\yii\db\dao\\sqlite\Schema', // sqlite 2 | 
						|
		'mssql' => '\yii\db\dao\mssql\Schema',     // Mssql driver on windows hosts | 
						|
		'dblib' => '\yii\db\dao\mssql\Schema',     // dblib drivers on linux (and maybe others os) hosts | 
						|
		'sqlsrv' => '\yii\db\dao\mssql\Schema',    // Mssql | 
						|
		'oci' => '\yii\db\dao\oci\Schema',         // Oracle driver | 
						|
	); | 
						|
 | 
						|
	private $_transaction; | 
						|
	private $_schema; | 
						|
 | 
						|
	/** | 
						|
	 * Constructor. | 
						|
	 * Note, the DB connection is not established when this connection | 
						|
	 * instance is created. You may set [[active]] to be true or call [[open]] | 
						|
	 * to establish the connection. | 
						|
	 * @param string $dsn the Data Source Name, or DSN, contains the information | 
						|
	 * required to connect to the database. | 
						|
	 * @param string $username the user name for the DSN string. | 
						|
	 * @param string $password the password for the DSN string. | 
						|
	 * @see http://www.php.net/manual/en/function.PDO-construct.php | 
						|
	 */ | 
						|
	public function __construct($dsn = '', $username = '', $password = '') | 
						|
	{ | 
						|
		$this->dsn = $dsn; | 
						|
		$this->username = $username; | 
						|
		$this->password = $password; | 
						|
	} | 
						|
 | 
						|
	/** | 
						|
	 * Closes the connection when this component is being serialized. | 
						|
	 * @return array | 
						|
	 */ | 
						|
	public function __sleep() | 
						|
	{ | 
						|
		$this->close(); | 
						|
		return array_keys(get_object_vars($this)); | 
						|
	} | 
						|
 | 
						|
	/** | 
						|
	 * Returns a list of available PDO drivers. | 
						|
	 * @return array list of available PDO drivers | 
						|
	 * @see http://www.php.net/manual/en/function.PDO-getAvailableDrivers.php | 
						|
	 */ | 
						|
	public static function getAvailableDrivers() | 
						|
	{ | 
						|
		return PDO::getAvailableDrivers(); | 
						|
	} | 
						|
 | 
						|
	/** | 
						|
	 * Returns a value indicating whether the DB connection is established. | 
						|
	 * @return boolean whether the DB connection is established | 
						|
	 */ | 
						|
	public function getActive() | 
						|
	{ | 
						|
		return $this->pdo !== null; | 
						|
	} | 
						|
 | 
						|
	/** | 
						|
	 * Opens or closes the DB connection. | 
						|
	 * @param boolean $value whether to open or close the DB connection | 
						|
	 * @throws Exception if there is any error when establishing the connection | 
						|
	 */ | 
						|
	public function setActive($value) | 
						|
	{ | 
						|
		$value ? $this->open() : $this->close(); | 
						|
	} | 
						|
 | 
						|
	/** | 
						|
	 * Sets the parameters about query caching. | 
						|
	 * This method is provided as a shortcut to setting three properties that are related | 
						|
	 * with query caching: [[queryCachingDuration]], [[queryCachingDependency]] and | 
						|
	 * [[queryCachingCount]]. | 
						|
	 * @param integer $duration the number of seconds that query results may remain valid in cache. | 
						|
	 * See [[queryCachingDuration]] for more details. | 
						|
	 * @param CCacheDependency $dependency the dependency for the cached query result. | 
						|
	 * See [[queryCachingDependency]] for more details. | 
						|
	 * @param integer $queryCount number of SQL queries that need to be cached after calling this method. | 
						|
	 * See [[queryCachingCount]] for more details. | 
						|
	 * @return Connection the connection instance itself. | 
						|
	 */ | 
						|
	public function cache($duration = 300, $dependency = null, $queryCount = 1) | 
						|
	{ | 
						|
		$this->queryCachingDuration = $duration; | 
						|
		$this->queryCachingDependency = $dependency; | 
						|
		$this->queryCachingCount = $queryCount; | 
						|
		return $this; | 
						|
	} | 
						|
 | 
						|
	/** | 
						|
	 * Establishes a DB connection. | 
						|
	 * It does nothing if a DB connection has already been established. | 
						|
	 * @throws Exception if connection fails | 
						|
	 */ | 
						|
	public function open() | 
						|
	{ | 
						|
		if ($this->pdo === null) { | 
						|
			if (empty($this->dsn)) { | 
						|
				throw new Exception('Connection.dsn cannot be empty.'); | 
						|
			} | 
						|
			try { | 
						|
				\Yii::trace('Opening DB connection', __CLASS__); | 
						|
				$this->pdo = $this->createPdoInstance(); | 
						|
				$this->initConnection($this->pdo); | 
						|
			} | 
						|
			catch (\PDOException $e) { | 
						|
				if (YII_DEBUG) { | 
						|
					throw new Exception('Failed to open DB connection: ' . $e->getMessage(), (int)$e->getCode(), $e->errorInfo); | 
						|
				} | 
						|
				else { | 
						|
					\Yii::error($e->getMessage(), __CLASS__); | 
						|
					throw new Exception('Failed to open DB connection.', (int)$e->getCode(), $e->errorInfo); | 
						|
				} | 
						|
			} | 
						|
		} | 
						|
	} | 
						|
 | 
						|
	/** | 
						|
	 * Closes the currently active DB connection. | 
						|
	 * It does nothing if the connection is already closed. | 
						|
	 */ | 
						|
	public function close() | 
						|
	{ | 
						|
		if ($this->pdo !== null) { | 
						|
			\Yii::trace('Closing DB connection', __CLASS__); | 
						|
			$this->pdo = null; | 
						|
			$this->_schema = null; | 
						|
		} | 
						|
	} | 
						|
 | 
						|
	/** | 
						|
	 * Creates the PDO instance. | 
						|
	 * This method is called by [[open]] to establish a DB connection. | 
						|
	 * The default implementation will create a PHP `PDO` instance. | 
						|
	 * You may override this method if the default `PDO` needs to be adapted for certain DBMS. | 
						|
	 * @return \PDO the pdo instance | 
						|
	 */ | 
						|
	protected function createPdoInstance() | 
						|
	{ | 
						|
		$pdoClass = '\PDO'; | 
						|
		if (($pos = strpos($this->dsn, ':')) !== false) { | 
						|
			$driver = strtolower(substr($this->dsn, 0, $pos)); | 
						|
			if ($driver === 'mssql' || $driver === 'dblib' || $driver === 'sqlsrv') { | 
						|
				$pdoClass = '\yii\db\dao\mssql\PDO'; | 
						|
			} | 
						|
		} | 
						|
		return new $pdoClass($this->dsn, $this->username, $this->password, $this->attributes); | 
						|
	} | 
						|
 | 
						|
	/** | 
						|
	 * Initializes the DB connection. | 
						|
	 * This method is invoked right after the DB connection is established. | 
						|
	 * The default implementation sets the [[charset]] and executes SQLs specified | 
						|
	 * in [[initSQLs]]. | 
						|
	 */ | 
						|
	protected function initConnection() | 
						|
	{ | 
						|
		$this->pdo->setAttribute(\PDO::ATTR_ERRMODE, \PDO::ERRMODE_EXCEPTION); | 
						|
		if ($this->emulatePrepare !== null && constant('\PDO::ATTR_EMULATE_PREPARES')) { | 
						|
			$this->pdo->setAttribute(\PDO::ATTR_EMULATE_PREPARES, $this->emulatePrepare); | 
						|
		} | 
						|
		if ($this->charset !== null) { | 
						|
			$driver = strtolower($this->pdo->getAttribute(\PDO::ATTR_DRIVER_NAME)); | 
						|
			if (in_array($driver, array('pgsql', 'mysql', 'mysqli'))) { | 
						|
				$this->pdo->exec('SET NAMES ' . $this->pdo->quote($this->charset)); | 
						|
			} | 
						|
		} | 
						|
		if (!empty($this->initSQLs)) { | 
						|
			foreach ($this->initSQLs as $sql) { | 
						|
				$this->pdo->exec($sql); | 
						|
			} | 
						|
		} | 
						|
	} | 
						|
 | 
						|
	/** | 
						|
	 * Creates a command for execution. | 
						|
	 * @param mixed $query the DB query to be executed. This can be either a string representing a SQL statement, | 
						|
	 * or an array representing different fragments of a SQL statement. Please refer to [[Command::__construct]] | 
						|
	 * for more details about how to pass an array as the query. If this parameter is not given, | 
						|
	 * you will have to call query builder methods in [[Command]] to build the DB query. | 
						|
	 * @return Command the DB command | 
						|
	 */ | 
						|
	public function createCommand($query = null) | 
						|
	{ | 
						|
		$this->open(); | 
						|
		return new Command($this, $query); | 
						|
	} | 
						|
 | 
						|
	/** | 
						|
	 * Returns the currently active transaction. | 
						|
	 * @return Transaction the currently active transaction. Null if no active transaction. | 
						|
	 */ | 
						|
	public function getCurrentTransaction() | 
						|
	{ | 
						|
		if ($this->_transaction !== null && $this->_transaction->getActive()) { | 
						|
			return $this->_transaction; | 
						|
		} | 
						|
	} | 
						|
 | 
						|
	/** | 
						|
	 * Starts a transaction. | 
						|
	 * @return CDbTransaction the transaction initiated | 
						|
	 */ | 
						|
	public function beginTransaction() | 
						|
	{ | 
						|
		\Yii::trace('Starting transaction', __CLASS__); | 
						|
		$this->open(); | 
						|
		$this->pdo->beginTransaction(); | 
						|
		return $this->_transaction = new Transaction($this); | 
						|
	} | 
						|
 | 
						|
	/** | 
						|
	 * Returns the database schema for the current connection | 
						|
	 * @return CDbSchema the database schema for the current connection | 
						|
	 */ | 
						|
	public function getSchema() | 
						|
	{ | 
						|
		if ($this->_schema !== null) { | 
						|
			return $this->_schema; | 
						|
		} | 
						|
		else { | 
						|
			$driver = $this->getDriverName(); | 
						|
			if (isset($this->schemaMap[$driver])) { | 
						|
				return $this->_schema = \Yii::createComponent($this->schemaMap[$driver], $this); | 
						|
			} | 
						|
			else { | 
						|
				throw new Exception("Connection does not support reading schema for '$driver' database."); | 
						|
			} | 
						|
		} | 
						|
	} | 
						|
 | 
						|
	public function getQueryBuilder() | 
						|
	{ | 
						|
		return $this->getSchema()->getQueryBuilder(); | 
						|
	} | 
						|
 | 
						|
	/** | 
						|
	 * Returns the ID of the last inserted row or sequence value. | 
						|
	 * @param string $sequenceName name of the sequence object (required by some DBMS) | 
						|
	 * @return string the row ID of the last row inserted, or the last value retrieved from the sequence object | 
						|
	 * @see http://www.php.net/manual/en/function.PDO-lastInsertId.php | 
						|
	 */ | 
						|
	public function getLastInsertID($sequenceName = '') | 
						|
	{ | 
						|
		$this->open(); | 
						|
		return $this->pdo->lastInsertId($sequenceName); | 
						|
	} | 
						|
 | 
						|
	/** | 
						|
	 * Quotes a string value for use in a query. | 
						|
	 * @param string $str string to be quoted | 
						|
	 * @return string the properly quoted string | 
						|
	 * @see http://www.php.net/manual/en/function.PDO-quote.php | 
						|
	 */ | 
						|
	public function quoteValue($str) | 
						|
	{ | 
						|
		if (is_int($str) || is_float($str) || is_bool($str)) { | 
						|
			return $str; | 
						|
		} | 
						|
 | 
						|
		$this->open(); | 
						|
		if (($value = $this->pdo->quote($str)) !== false) { | 
						|
			return $value; | 
						|
		} | 
						|
		else {  // the driver doesn't support quote (e.g. oci) | 
						|
			return "'" . addcslashes(str_replace("'", "''", $str), "\000\n\r\\\032") . "'"; | 
						|
		} | 
						|
	} | 
						|
 | 
						|
	/** | 
						|
	 * Quotes a table name for use in a query. | 
						|
	 * If the table name contains schema prefix, the prefix will also be properly quoted. | 
						|
	 * @param string $name table name | 
						|
	 * @return string the properly quoted table name | 
						|
	 */ | 
						|
	public function quoteTableName($name) | 
						|
	{ | 
						|
		return $this->getSchema()->quoteTableName($name); | 
						|
	} | 
						|
 | 
						|
	/** | 
						|
	 * Quotes a column name for use in a query. | 
						|
	 * If the column name contains prefix, the prefix will also be properly quoted. | 
						|
	 * @param string $name column name | 
						|
	 * @return string the properly quoted column name | 
						|
	 */ | 
						|
	public function quoteColumnName($name) | 
						|
	{ | 
						|
		return $this->getSchema()->quoteColumnName($name); | 
						|
	} | 
						|
 | 
						|
	/** | 
						|
	 * Determines the PDO type for the give PHP data type. | 
						|
	 * @param string $type The PHP type (obtained by `gettype()` call). | 
						|
	 * @return integer the corresponding PDO type | 
						|
	 * @see http://www.php.net/manual/en/pdo.constants.php | 
						|
	 */ | 
						|
	public function getPdoType($type) | 
						|
	{ | 
						|
		static $map = array( | 
						|
			'boolean' => \PDO::PARAM_BOOL, | 
						|
			'integer' => \PDO::PARAM_INT, | 
						|
			'string' => \PDO::PARAM_STR, | 
						|
			'NULL' => \PDO::PARAM_NULL, | 
						|
		); | 
						|
		return isset($map[$type]) ? $map[$type] : PDO::PARAM_STR; | 
						|
	} | 
						|
 | 
						|
	/** | 
						|
	 * Returns the name of the DB driver for the current [[dsn]]. | 
						|
	 * @return string name of the DB driver | 
						|
	 */ | 
						|
	public function getDriverName() | 
						|
	{ | 
						|
		if (($pos = strpos($this->dsn, ':')) !== false) { | 
						|
			return strtolower(substr($this->dsn, 0, $pos)); | 
						|
		} | 
						|
		else { | 
						|
			return $this->getAttribute(\PDO::ATTR_DRIVER_NAME); | 
						|
		} | 
						|
	} | 
						|
 | 
						|
	/** | 
						|
	 * Obtains a specific DB connection attribute information. | 
						|
	 * @param integer $name the attribute to be queried | 
						|
	 * @return mixed the corresponding attribute information | 
						|
	 * @see http://www.php.net/manual/en/function.PDO-getAttribute.php | 
						|
	 */ | 
						|
	public function getAttribute($name) | 
						|
	{ | 
						|
		$this->open(); | 
						|
		return $this->pdo->getAttribute($name); | 
						|
	} | 
						|
 | 
						|
	/** | 
						|
	 * Sets an attribute on the database connection. | 
						|
	 * @param integer $name the attribute to be set | 
						|
	 * @param mixed $value the attribute value | 
						|
	 * @see http://www.php.net/manual/en/function.PDO-setAttribute.php | 
						|
	 */ | 
						|
	public function setAttribute($name, $value) | 
						|
	{ | 
						|
		$this->open(); | 
						|
		$this->pdo->setAttribute($name, $value); | 
						|
	} | 
						|
 | 
						|
	/** | 
						|
	 * Returns the statistical results of SQL executions. | 
						|
	 * The results returned include the number of SQL statements executed and | 
						|
	 * the total time spent. | 
						|
	 * In order to use this method, [[enableProfiling]] has to be set true. | 
						|
	 * @return array the first element indicates the number of SQL statements executed, | 
						|
	 * and the second element the total time spent in SQL execution. | 
						|
	 */ | 
						|
	public function getStats() | 
						|
	{ | 
						|
		$logger = \Yii::getLogger(); | 
						|
		$timings = $logger->getProfiling(array('yii\db\dao\Command::query', 'yii\db\dao\Command::execute')); | 
						|
		$count = count($timings); | 
						|
		$time = 0; | 
						|
		foreach ($timings as $timing) { | 
						|
			$time += $timing[1]; | 
						|
		} | 
						|
		return array($count, $time); | 
						|
	} | 
						|
}
 | 
						|
 |