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.
OracleParameterCollection::Item Property (Int32)
.NET Framework (current version)
Gets or sets the OracleParameter at the specified index.
Assembly: System.Data.OracleClient (in System.Data.OracleClient.dll)
public: property OracleParameter^ default[ int index ] { OracleParameter^ get(int index); void set(int index, OracleParameter^ value); }
Parameters
- index
-
Type:
System::Int32
The zero-based index of the parameter to retrieve.
Property Value
Type: System.Data.OracleClient::OracleParameter^The OracleParameter at the specified index.
| Exception | Condition |
|---|---|
| IndexOutOfRangeException | The index specified does not exist. |
The following example creates an OracleParameterCollection, adds instances of OracleParameter to the collection, displays the names of its OracleParameter objects, and then clears the collection.
.NET Framework
Available since 1.1
Available since 1.1
Show: