예제 #1
0
파일: Ids.php 프로젝트: heiglandreas/zf2
 /**
  * Returns a list of the tables in the database.
  *
  * @return array
  */
 public function listTables()
 {
     $sql = "SELECT tabname " . "FROM systables ";
     return $this->_adapter->fetchCol($sql);
 }