SQLite value types. SQLite has 5 storage classes.
pub type Value { Null Integer(Int) Real(Float) Text(String) Blob(BitArray) }
Null
NULL value
Integer(Int)
64-bit signed integer
Real(Float)
64-bit IEEE floating point
Text(String)
UTF-8 text string
Blob(BitArray)
Binary data