_dsn() protected method

Creates a PDO DSN for the adapter from $this->_config settings.
protected _dsn ( ) : string
return string
コード例 #1
0
ファイル: Pdo.php プロジェクト: diglin/diglin_mssql
 protected function _dsn()
 {
     if (isset($this->_config['type'])) {
         $this->_config['pdoType'] = $this->_config['type'];
     }
     return parent::_dsn();
 }