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

getVarcharTypeDeclarationSQLSnippet() protected method

{@inheritDoc}
protected getVarcharTypeDeclarationSQLSnippet ( $length, $fixed )
    protected function getVarcharTypeDeclarationSQLSnippet($length, $fixed)
    {
        return $fixed ? $length ? 'CHAR(' . $length . ')' : 'CHAR(2000)' : ($length ? 'VARCHAR2(' . $length . ')' : 'VARCHAR2(4000)');
    }
OraclePlatform