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

getVarcharTypeDeclarationSQLSnippet() защищенный Метод

{@inheritDoc}
protected getVarcharTypeDeclarationSQLSnippet ( $length, $fixed )
    protected function getVarcharTypeDeclarationSQLSnippet($length, $fixed)
    {
        return $fixed ? $length ? 'NCHAR(' . $length . ')' : 'CHAR(255)' : ($length ? 'NVARCHAR(' . $length . ')' : 'NVARCHAR(255)');
    }
SQLServerPlatform