예제 #1
0
파일: Query.php 프로젝트: php-yaoi/php-yaoi
 public function rowsAffected()
 {
     if (!$this->executed) {
         $this->execute();
     }
     return $this->driver->rowsAffected($this->result);
 }