Returns the value of the specified column in its native format.
Visual Basic
NotOverridable Public Function GetValue( _
ByVal columnID As Integer _
) As Object _
Implements IDataRecord.GetValue
C#
public object GetValue(
int columnID
);
columnID The ID number of the column. The value must be in the range [0,ULDataReader.FieldCount-1]. The first column in the cursor has an ID value of zero.
The column value as the .NET type most appropriate for the column or DBNull if column is NULL.
This method is identical in functionality to the ULDataReader.this[int].
ULException class - A SQL error occurred.