Zend_Db_Adapter_Pdo_Mssql::listTables PHP Метод

listTables() публичный Метод

Returns a list of the tables in the database.
public listTables ( ) : array
Результат array
    public function listTables()
    {
        $sql = "SELECT name FROM sysobjects WHERE type = 'U' ORDER BY name";
        return $this->fetchCol($sql);
    }