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)

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 _
)
[C#]
public SQLString(
   int lcid,
   int flag,
   byte[] data,
   int index,
   int count
);
[C++]
public: SQLString(
   int lcid,
   int flag,
   unsigned char* data[],
   int index,
   int count
);
[JScript]
public function SQLString(
   lcid : int,
   flag : int,
   data : Byte[],
   index : int,
   count : int
);

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.

See Also

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