GetValue method

Returns the value of the specified column in its native format.

Syntax
Visual Basic

Public Overrides Function GetValue( _
   ByVal columnID As Integer _
) As Object
C#

public override object GetValue(
   int columnID
);
Parameters
  • 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.

Return value

The column value as the .NET type most appropriate for the column or DBNull if column is NULL.

Remarks

This method is identical in functionality to the ULDataReader.this[int].

See also