DB2®DataReader.this (String) Property

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

Namespace:
IBM.Data.DB2
Assembly:
IBM.Data.DB2 (in IBM.Data.DB2.dll)

Syntax


[Visual Basic]
Public Default ReadOnly Property this( _
   ByVal value As String _
) As Object
[C#]
public object this[
   string value
] {get;}
[C++]
public: __property Object* get_this(
   String* value
);
[JScript]
returnValue = DB2DataReaderObject.this(value);
-or-
returnValue = DB2DataReaderObject(value);

Property value

The value of the specified column in its native format.

Exceptions

Exception type Condition
IndexOutOfRangeException No column with the specified name was found.

Remarks

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

This method is kana-width insensitive.