GetFieldType method

Returns the System.Type most appropriate for the specified column.

Syntax
Visual Basic
Public Overrides Function GetFieldType( _
   ByVal columnID As Integer _
) As Type
C#
public override Type GetFieldType(
   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

A System.Type value for the column.

See also