SqliteDataReader.GetDataTypeName(Int32) Method

Definition

Gets the declared data type name of the specified column. The storage class is returned for computed columns.

public override string GetDataTypeName (int ordinal);
override this.GetDataTypeName : int -> string
Public Overrides Function GetDataTypeName (ordinal As Integer) As String

Parameters

ordinal
Int32

The zero-based column ordinal.

Returns

The data type name of the column.

Remarks

Due to SQLite's dynamic type system, this may not reflect the actual type of the value.

Applies to