Doctrine\DBAL\Platforms\SQLServerPlatform::getListViewsSQL PHP Метод

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

{@inheritDoc}
public getListViewsSQL ( $database )
    public function getListViewsSQL($database)
    {
        return "SELECT name FROM sysobjects WHERE type = 'V' ORDER BY name";
    }
SQLServerPlatform