Module Sqlite3.Data


module Data: sig .. end


type t =
| NONE
| NULL
| INT of int64
| FLOAT of float
| TEXT of string
| BLOB of string
Type of columns
val to_string : t -> string
to_string tp converts column type tp to a string.