OleDbDataReader.Item Property [C#]See Also
OleDbDataReader Class | OleDbDataReader Members | System.Data.OleDb Namespace
Language
C#
C++
JScript
Visual Basic
Show All
Gets the value of a column in its native format.
[C#] In C#, this property is the indexer for the OleDbDataReader class.
Overload List
Gets the value of the specified column in its native format given the column name.
[Visual Basic] Overloads Public Default ReadOnly Property Item(String) As Object Implements IDataRecord.Item
[C#] public object this[string] {get;}
[C++] public: __property Object* get_Item(String*);
[JScript] OleDbDataReader.Item (String)
Gets the value of the specified column in its native format given the column ordinal.
[Visual Basic] Overloads Public Default ReadOnly Property Item(Integer) As Object Implements IDataRecord.Item
[C#] public object this[int] {get;}
[C++] public: __property Object* get_Item(int);
[JScript] OleDbDataReader.Item (int)
See Also
OleDbDataReader Class | OleDbDataReader Members | System.Data.OleDb Namespace
--------------------------------------------------------------------------------
Send comments on this topic.
© 2001 Microsoft Corporation. All rights reserved.