Пример #1
0
 /**
  * Returns a list of the tables in the database.
  *
  * @return array
  */
 public function listTables()
 {
     $sql = "SELECT tabname " . "FROM systables ";
     return $this->_adapter->fetchCol($sql);
 }