示例#1
0
文件: Mysqli.php 项目: vgrish/dvelum
 protected function _connect()
 {
     if ($this->_connection) {
         return;
     }
     try {
         parent::_connect();
     } catch (Zend_Db_Adapter_Mysqli_Exception $e) {
         if (!is_null($this->_connectionErrorHandler)) {
             $f = $this->_connectionErrorHandler;
             $f($e);
         }
         throw $e;
     }
 }