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)

Initializes a new instance of the SQLParameter class.

[Visual Basic]
Overloads Public Sub New( _
   ByVal parameterName As String, _
   ByVal dbType As SQLDataType, _
   ByVal size As Integer _
)
[C#]
public SQLParameter(
   string parameterName,
   SQLDataType dbType,
   int size
);
[C++]
public: SQLParameter(
   String* parameterName,
   SQLDataType dbType,
   int size
);
[JScript]
public function SQLParameter(
   parameterName : String,
   dbType : SQLDataType,
   size : int
);

Parameters

parameterName
The name of the column to map.
dbType
One of the SQLDataType values.
size
The width of the column.

Remarks

The type is inferred from the value.

See Also

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