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!

ADOParameter Constructor (String, ADODBType, Int32, ParameterDirection, Boolean, Byte, Byte, String, DataRowVersion, Object)

Initializes a new instance of the ADOParameter class with the column name, column data type, the column width, source column name, the parameter direction, the precision, and other properties.

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

Parameters

parameterName
The name of the column to map.
dbType
[To be supplied.]
size
[To be supplied.]
direction
[To be supplied.]
isNullable
[To be supplied.]
precision
[To be supplied.]
scale
[To be supplied.]
srcColumn
[To be supplied.]
srcVersion
[To be supplied.]
value
[To be supplied.]

See Also

ADOParameter Class | ADOParameter Members | System.Data.ADO Namespace | ADOParameter Constructor Overload List