예제 #1
0
파일: Table.php 프로젝트: kasonyang/hitar
 /**
  * 
  * @param int $limit
  * @return string Description
  */
 function delete()
 {
     if (!$this->primary_keys) {
         Exception::noPrimaryKey();
     }
     $qb = $this->getQueryBuilder();
     $qb->delete($this->table_name);
     return $qb->execute();
 }