SQLite3.Type
represent all the SQLite types we can represent.
The constructors are Null, Integer, Floating, Text, and Blob. Most
primitive Carp types can be casted to appropriate SQLite types by using the
to-sqlite3 interface.
delete
instantiate
(Fn [SQLite3.Type] ())
deletes a SQLite3.Type. This should usually not be called manually.
to-sqlite3
defn
(Fn [SQLite3.Type] SQLite3.Type)
(to-sqlite3 t)
is the identity on values that are already a
SQLite3.Type, so pre-built Null and Blob values flow through
params next to primitives.