columnType method

SqlType columnType(
  1. int index
)

Calls sqlite3_column_type, returning the type of a column.

Note that this performs no bounds check against columnCount in Dart.

See also: https://sqlite.org/c3ref/column_blob.html

Implementation

SqlType columnType(int index) {
  return rawStatement.sqlite3_column_type(index);
}