Zend_Db_Adapter_Pdo_Sqlite::listTables PHP Méthode

listTables() public méthode

Returns a list of the tables in the database.
public listTables ( ) : array
Résultat 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);
    }