예제 #1
0
파일: Insert.php 프로젝트: phpf/micro
 /** Execute insert query
  * @return integer last inserted id or false
  */
 public function execute()
 {
     $result = parent::execute();
     if ($result) {
         return $this->getPDO()->lastInsertId();
     }
     return false;
 }