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.

OdbcParameterCollection::Item Property (Int32)

 

Gets or sets the OdbcParameter at the specified index.

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

Property Value

Type: System.Data.Odbc::OdbcParameter^

The OdbcParameter at the specified index.

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.

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