OleDbDataReader::Item Property (String^)

 

Gets the value of the specified column in its native format given the column name.

Namespace:   System.Data.OleDb
Assembly:  System.Data (in System.Data.dll)

public:
property Object^ default[
	String^ name
] {
	virtual Object^ get(String^ name) override;
}

Parameters

name
Type: System::String^

The column name.

Property Value

Type: System::Object^

The value of the specified column in its native format.

Exception Condition
IndexOutOfRangeException

No column with the specified name was found.

A case-sensitive lookup is performed first. If it fails, a second case-insensitive search is made.

This method is kana-width insensitive.

.NET Framework
Available since 1.1
Return to top
Show: