E
epigram
If we have a SQL Server 2000 database that does not use unicode data types
(nchar, nvarchar, ntext), but is instead uses character data types (char,
varchar, text) does ADO.NET go through some conversion process when it, for
example, retrieves these values to store in a .NET string? In particular,
is there a significant performance hit that would NOT take place if we were
using the unicode data types instead? My assumption here being that a
conversion wouldn't have to take place to convert to SQL Server unicode data
types to .NET unicode types (e.g. the string class). I'm concerned about
the performance implications of this type of a conversion happening
constantly.
Thanks.
(nchar, nvarchar, ntext), but is instead uses character data types (char,
varchar, text) does ADO.NET go through some conversion process when it, for
example, retrieves these values to store in a .NET string? In particular,
is there a significant performance hit that would NOT take place if we were
using the unicode data types instead? My assumption here being that a
conversion wouldn't have to take place to convert to SQL Server unicode data
types to .NET unicode types (e.g. the string class). I'm concerned about
the performance implications of this type of a conversion happening
constantly.
Thanks.