sig
  type t =
      NONE
    | NULL
    | INT of int64
    | FLOAT of float
    | TEXT of string
    | BLOB of string
  val to_string : Sqlite3.Data.t -> string
end