SqlString Structure
.NET Framework 2.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. 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.
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
JScript suports the use of structures, but not the declaration of new ones.
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 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 .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.
Reference
SqlString MembersSystem.Data.SqlTypes Namespace
CurrentCulture
Other Resources
Working with SqlTypesCommunity Additions
ADD
Show: