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 (String^)
.NET Framework (current version)
Gets or sets the OleDbParameter with the specified name.
Assembly: System.Data (in System.Data.dll)
public: [BrowsableAttribute(false)] property OleDbParameter^ default[ String^ parameterName ] { OleDbParameter^ get(String^ parameterName); void set(String^ parameterName, OleDbParameter^ 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 OleDbParameter with a given ParameterName within an OleDbParameterCollection. 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 OleDbParameterCollection has already been created.
.NET Framework
Available since 1.1
Available since 1.1
Show: