Module: SQLite3::Constants::ColumnType

Defined in:
lib/sqlite3/constants.rb

Overview

CAPI3REF: Fundamental Datatypes

^(Every value in SQLite has one of five fundamental datatypes:

  • 64-bit signed integer
  • 64-bit IEEE floating point number
  • string
  • BLOB
  • NULL
)^

These constants are codes for each of those types.

Constant Summary collapse

INTEGER =
1
FLOAT =
2
TEXT =
3
BLOB =
4
NULL =
5