Doctrine\DBAL\Platforms\SQLServerPlatform::getListViewsSQL PHP Method

getListViewsSQL() public method

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