Doctrine\DBAL\Platforms\OraclePlatform::getDropViewSQL PHP Method

getDropViewSQL() public method

{@inheritDoc}
public getDropViewSQL ( $name )
    public function getDropViewSQL($name)
    {
        return 'DROP VIEW ' . $name;
    }
OraclePlatform