_dsn() protected method

Creates a PDO DSN for the adapter from $this->_config settings.
protected _dsn ( ) : string
return string
Example #1
0
 protected function _dsn()
 {
     if (isset($this->_config['type'])) {
         $this->_config['pdoType'] = $this->_config['type'];
     }
     return parent::_dsn();
 }