Zend_Db_Adapter_Pdo_Mssql::listTables PHP Method

listTables() public method

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