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, Type, Int32, String, DataRowVersion)

Initializes a new instance of the SQLParameter class.

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

Parameters

parameterName
The name of the column to map.
type
The Type of the parameter.
size
The width of the column.
sourceColumn
The name of the source column.
sourceVersion
One of the DataRowVersion values.

See Also

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