예제 #1
0
파일: Statement.php 프로젝트: smasty/neevo
 public function run()
 {
     $result = parent::run();
     try {
         $this->affectedRows = $this->connection->getDriver()->getAffectedRows();
     } catch (DriverException $e) {
         $this->affectedRows = false;
     }
     return $result;
 }