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

9 lines
144 B
Crystal
Raw Normal View History

2015-03-13 00:08:01 +00:00
# Each of the possible types of an SQLite3 column.
enum SQLite3::Type
INTEGER = 1
2016-06-15 15:05:12 +00:00
FLOAT = 2
BLOB = 4
NULL = 5
TEXT = 3
2015-03-13 00:08:01 +00:00
end