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 );
ADOParameter Class | ADOParameter Members | System.Data.ADO Namespace | ADOParameter Constructor Overload List