Windows apps
Collapse the table of content
Expand the table of content
Information
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^)

 

Gets or sets the OleDbParameter with the specified name.

Namespace:   System.Data.OleDb
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.

Property Value

Type: System.Data.OleDb::OleDbParameter^

The OleDbParameter with the specified name.

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.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 1.1
Return to top
Show:
© 2017 Microsoft