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

getListViewsSQL() public method

{@inheritDoc}
public getListViewsSQL ( $database )
    public function getListViewsSQL($database)
    {
        $database = $this->quoteStringLiteral($database);
        return "SELECT * FROM information_schema.VIEWS WHERE TABLE_SCHEMA = " . $database;
    }
MySqlPlatform