Module Ezsqlite.Value

type value =
| Null
| Blob of Bytes.t
| Text of string
| Double of float
| Integer of Int64.t

Datatypes that can be stored by SQLite

type kind =
| INTEGER
| DOUBLE
| TEXT
| BLOB
| NULL
exception Invalid_type
val is_null : value ‑> bool
val to_string : value ‑> string
val get_string : value ‑> string
val get_bytes : value ‑> Bytes.t
val get_float : value ‑> float
val get_int : value ‑> int
val get_int64 : value ‑> int64
val get_bool : value ‑> bool