OdbcParameterCollection::Item Property (String^)

 

Gets or sets the OdbcParameter with the specified name.

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

Property Value

Type: System.Data.Odbc::OdbcParameter^

The OdbcParameter with the specified name.

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.

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

.NET Framework
Available since 1.1
Return to top
Show: