Initializes a new instance of the ADOParameter class.
Initializes a new instance of the ADOParameter class. This is the default constructor.
[Visual Basic] Overloads Public Sub New()
[C#] public ADOParameter();
[C++] public: ADOParameter();
[JScript] public function ADOParameter();
Initializes a new instance of the ADOParameter class with the column name and column data type.
[Visual Basic] Overloads Public Sub New(String, ADODBType)
[C#] public ADOParameter(String, ADODBType);
[C++] public: ADOParameter(String*, ADODBType);
[JScript] public function ADOParameter(String, ADODBType);
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(String, ADODBType, Integer)
[C#] public ADOParameter(String, ADODBType, int);
[C++] public: ADOParameter(String*, ADODBType, int);
[JScript] public function ADOParameter(String, ADODBType, int);
Initializes a new instance of the ADOParameter class with the column name, column data type, the column width and source column name.
[Visual Basic] Overloads Public Sub New(String, ADODBType, Integer, String)
[C#] public ADOParameter(String, ADODBType, int, String);
[C++] public: ADOParameter(String*, ADODBType, int, String*);
[JScript] public function ADOParameter(String, ADODBType, int, String);
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(String, ADODBType, Integer, ParameterDirection, Boolean, Byte, Byte, String, DataRowVersion, Object)
[C#] public ADOParameter(String, ADODBType, int, ParameterDirection, bool, byte, byte, String, DataRowVersion, Object);
[C++] public: ADOParameter(String*, ADODBType, int, ParameterDirection, bool, unsigned char, unsigned char, String*, DataRowVersion, Object);
[JScript] public function ADOParameter(String, ADODBType, int, ParameterDirection, Boolean, Byte, Byte, String, DataRowVersion, Object);
ADOParameter Class | ADOParameter Members | System.Data.ADO Namespace