コード例 #1
0
ファイル: Postgres.php プロジェクト: TheProjecter/skeleton
 protected function _close()
 {
     pg_disconnect($this->_connection);
 }
コード例 #2
0
 public function disconnectFromDb()
 {
   if ($this->m_isConnect == true and $this->m_isPersist == false) {
     if (pg_disconnect($this->m_pgCon) == false) {
       throw new CError(ERROR_SQL_DISCONNECT, array($this->getErrorStr()));
     }
   }
 }