コード例 #1
0
ファイル: Db2.php プロジェクト: NareshChennuri/pyng
 /**
  * Returns a list of the tables in the database.
  *
  * @return array
  */
 public function listTables()
 {
     $sql = "SELECT tabname " . "FROM SYSCAT.TABLES ";
     return $this->_adapter->fetchCol($sql);
 }