NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

SQLString Constructor (Int32, Int32, Byte[], Int32, Int32, Boolean)

Initializes a new instance of the SQLString class.

[Visual Basic]
Overloads Public Sub New( _
   ByVal lcid As Integer, _
   ByVal flag As Integer, _
   ByVal data() As Byte, _
   ByVal index As Integer, _
   ByVal count As Integer, _
   ByVal fUnicode As Boolean _
)
[C#]
public SQLString(
   int lcid,
   int flag,
   byte[] data,
   int index,
   int count,
   bool fUnicode
);
[C++]
public: SQLString(
   int lcid,
   int flag,
   unsigned char* data[],
   int index,
   int count,
   bool fUnicode
);
[JScript]
public function SQLString(
   lcid : int,
   flag : int,
   data : Byte[],
   index : int,
   count : int,
   fUnicode : Boolean
);

Parameters

lcid
A value that identifies the language the array is in.
flag
[To be supplied.]
data
The data array to store.
index
The starting index within the array.
count
The number of characters from index to copy.
fUnicode
true if Unicode encoded, otherwise false.

See Also

SQLString Class | SQLString Members | System.Data.SQLTypes Namespace | SQLString Constructor Overload List