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.
OdbcParameterCollection::Item Property (Int32)
.NET Framework (current version)
Gets or sets the OdbcParameter at the specified index.
Assembly: System.Data (in System.Data.dll)
public: [BrowsableAttribute(false)] property OdbcParameter^ default[ int index ] { OdbcParameter^ get(int index); void set(int index, OdbcParameter^ 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 OdbcParameterCollection, adds instances of OdbcParameter to the collection, displays the names of its OdbcParameter objects, and then clears the collection.
.NET Framework
Available since 1.1
Available since 1.1
Show: