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)

Initializes a new instance of the ADOParameter class with the column name, column data type and the column width.

[Visual Basic]
Overloads Public Sub New( _
   ByVal name As String, _
   ByVal dataType As ADODBType, _
   ByVal size As Integer _
)
[C#]
public ADOParameter(
   string name,
   ADODBType dataType,
   int size
);
[C++]
public: ADOParameter(
   String* name,
   ADODBType dataType,
   int size
);
[JScript]
public function ADOParameter(
   name : String,
   dataType : ADODBType,
   size : int
);

Parameters

name
The name of the column to map.
dataType
One of the ADODBType values.
size
The width of the column.

Remarks

The Precision is inferred from the ADODBType parameter.

See Also

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