SqlDataReader::Item Property (String^)
Gets the value of the specified column in its native format given the column name.
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.
| 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 (a case-insensitive comparison is done using the database collation). Unexpected results can occur when comparisons are affected by culture-specific casing rules. For example, in Turkish, the following example yields the wrong results because the file system in Turkish does not use linguistic casing rules for the letter 'i' in "file".
This method is kana-width insensitive.
Available since 1.1