_dsn() 보호된 메소드

Creates a PDO DSN for the adapter from $this->_config settings.
protected _dsn ( ) : string
리턴 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();
 }