The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
OleDbParameterCollection::Item Property (Int32)
.NET Framework (current version)
Gets or sets the OleDbParameter at the specified index.
Assembly: System.Data (in System.Data.dll)
public: [BrowsableAttribute(false)] property OleDbParameter^ default[ int index ] { OleDbParameter^ get(int index); void set(int index, OleDbParameter^ value); }
Parameters
- index
-
Type:
System::Int32
The zero-based index of the parameter to retrieve.
| Exception | Condition |
|---|---|
| IndexOutOfRangeException | The index specified does not exist. |
The following example creates an OleDbParameterCollection, adds instances of OleDbParameter to the collection, displays the names of its OleDbParameter objects, and then clears the collection.
.NET Framework
Available since 1.1
Available since 1.1
Show: