コード例 #1
0
ファイル: pgsql_engine.php プロジェクト: blakeHelm/BallotPath
 protected function DoOpen()
 {
     $this->queryResult = @pg_query($this->pgConnection->GetConnectionHandle(), $this->GetSQL());
     if ($this->queryResult) {
         return true;
     } else {
         return false;
     }
 }