Zend_Db_Adapter_Pdo_Sqlite::listTables PHP 메소드

listTables() 공개 메소드

Returns a list of the tables in the database.
public listTables ( ) : array
리턴 array
    public function listTables()
    {
        $sql = "SELECT name FROM sqlite_master WHERE type='table' " . "UNION ALL SELECT name FROM sqlite_temp_master " . "WHERE type='table' ORDER BY name";
        return $this->fetchCol($sql);
    }