Module: SQLite3::Constants::ColumnType

Defined in:
lib/sqlite3/constants.rb

Overview

CAPI3REF: Fundamental Datatypes

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

<ul> <li> 64-bit signed integer <li> 64-bit IEEE floating point number <li> string <li> BLOB <li> NULL </ul>)^

These constants are codes for each of those types.

Constant Summary collapse

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