shard-crystal-sqlite3/src/sqlite3/type.cr

9 lines
144 B
Crystal

# Each of the possible types of an SQLite3 column.
enum SQLite3::Type
INTEGER = 1
FLOAT = 2
BLOB = 4
NULL = 5
TEXT = 3
end