Beispiel #1
0
 protected function DoOpen()
 {
     try {
         $this->statement = $this->pdoConnection->GetConnectionHandle()->query($this->GetSQL());
         if (!$this->statement) {
             return false;
         }
         return true;
     } catch (PDOException $e) {
         $this->lastException = $e;
         return false;
     }
 }