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!

SQLParameter Constructor (String, SQLDataType, Int32, ParameterDirection, Boolean, Byte, Byte, String, DataRowVersion, Object)

[To be supplied.]

[Visual Basic]
Overloads Public Sub New( _
   ByVal parameterName As String, _
   ByVal dbType As SQLDataType, _
   ByVal size As Integer, _
   ByVal direction As ParameterDirection, _
   ByVal isNullable As Boolean, _
   ByVal precision As Byte, _
   ByVal scale As Byte, _
   ByVal sourceColumn As String, _
   ByVal sourceVersion As DataRowVersion, _
   ByVal value As Object _
)
[C#]
public SQLParameter(
   string parameterName,
   SQLDataType dbType,
   int size,
   ParameterDirection direction,
   bool isNullable,
   byte precision,
   byte scale,
   string sourceColumn,
   DataRowVersion sourceVersion,
   object value
);
[C++]
public: SQLParameter(
   String* parameterName,
   SQLDataType dbType,
   int size,
   ParameterDirection direction,
   bool isNullable,
   unsigned char precision,
   unsigned char scale,
   String* sourceColumn,
   DataRowVersion sourceVersion,
   Object* value
);
[JScript]
public function SQLParameter(
   parameterName : String,
   dbType : SQLDataType,
   size : int,
   direction : ParameterDirection,
   isNullable : Boolean,
   precision : Byte,
   scale : Byte,
   sourceColumn : String,
   sourceVersion : DataRowVersion,
   value : Object
);

Parameters

parameterName
[To be supplied.]
dbType
[To be supplied.]
size
[To be supplied.]
direction
[To be supplied.]
isNullable
[To be supplied.]
precision
[To be supplied.]
scale
[To be supplied.]
sourceColumn
[To be supplied.]
sourceVersion
[To be supplied.]
value
[To be supplied.]

See Also

SQLParameter Class | SQLParameter Members | System.Data.SQL Namespace | SQLParameter Constructor Overload List