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)

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

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

Parameters

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

Remarks

The Size and Precision are inferred from the ADODBType parameter.

See Also

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