System.Data.OleDb Namespace OleDbParameterCollection Class
Inserts an OleDbParameter at the specified index in the collection.
[ VB ]
Overloads Public Sub Insert ( _
ByVal index As Integer, _
ByVal param As Object _
)
[ C# ]
public void Insert (
int index,
Object param
);
[ C++ ]
public: void Insert (
int index,
Object* param
);
[ JScript ]
public function Insert (
index : int,
param : Object
);
- index
- The position in the collection wherein to add the OleDbParameter.
- param
- The OleDbParameter to add to the collection.
IList.Insert
Use the Insert method to add an OleDbParameter to the collection at the index specified by the index parameter. This implementation of the method takes the Object specified by the param parameter and inserts it in the collection at the specified index.
OleDbParameterCollection Members Add