shard-crystal-sqlite3/src/sqlite3/type.cr
2016-06-15 12:05:12 -03:00

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