SqlString Structure
.NET Framework 3.0
Represents a variable-length stream of characters to be stored in or retrieved from the database. SqlString has a different underlying data structure from its corresponding .NET Framework String data type.
Namespace: System.Data.SqlTypes
Assembly: System.Data (in system.data.dll)
System.Data.SqlTypes Namespace
CurrentCulture
Assembly: System.Data (in system.data.dll)
'Declaration <SerializableAttribute> _ Public Structure SqlString Implements INullable, IComparable, IXmlSerializable 'Usage Dim instance As SqlString
/** @attribute SerializableAttribute() */ public final class SqlString extends ValueType implements INullable, IComparable, IXmlSerializable
Not applicable.
String always uses the default CultureInfo from the current thread, but SqlString contains its own locale Id and compare flags. The comparison result of two SqlString structures is independent of operating system and current thread locale.
When you use SqlString comparison operators, note that if the LCIDs of arguments are different, comparison functions throw an exception because they cannot be compared. For example, the statement
SqlString mySqlString = new SqlString("abc");
is equivalent to
SqlString mySqlString = new SqlString("abc", CultureInfo.CurrentCulture.LCID);
Windows 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.Reference
SqlString MembersSystem.Data.SqlTypes Namespace
CurrentCulture
Other Resources
Working with SqlTypesCommunity Additions
ADD
Show: