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 (String^)
.NET Framework (current version)
Gets or sets the OdbcParameter with the specified name.
Assembly: System.Data (in System.Data.dll)
public: [BrowsableAttribute(false)] property OdbcParameter^ default[ String^ parameterName ] { OdbcParameter^ get(String^ parameterName); void set(String^ parameterName, OdbcParameter^ value); }
Parameters
- parameterName
-
Type:
System::String^
The name of the parameter to retrieve.
| Exception | Condition |
|---|---|
| IndexOutOfRangeException | The name specified does not exist. |
The following example searches for an OdbcParameter with a given ParameterName within an OdbcParameterCollection. If the parameter exists, the example displays the name and index of the parameter. If the parameter does not exist, the example displays an error. This example assumes that an OdbcParameterCollection has already been created.
.NET Framework
Available since 1.1
Available since 1.1
Show: