Insert Method (DataParameterCollection)
The index at which to insert the parameter
The IDbDataParameter to insert into the collection
Inserts the parameter at the specified index in the collection.
Syntax
'Declaration
Public Sub Insert( _
ByVal _index_ As Integer, _
ByVal _value_ As Object _
)
public void Insert(
int _index_,
object _value_
)
Parameters
index
The index at which to insert the parameter
value
The IDbDataParameter to insert into the collection
Remarks
All parameters with higher indexes then this parameter will be shifted down one in index to accomodates the new parameter.
Only instances of IDbDataParameter can be added to this collection.
Requirements
Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server family
Reference
DataParameterCollection Class
DataParameterCollection Members