type schema = { field1: any, field2: any, ... }
AFAIK the column types are not really enforced and you can even leave them out.
https://stackoverflow.com/questions/2489936/sqlite3s-dynamic...
https://www.sqlite.org/datatype3.html#type_affinity
type schema = { field1: any, field2: any, ... }
AFAIK the column types are not really enforced and you can even leave them out.
https://stackoverflow.com/questions/2489936/sqlite3s-dynamic...