package ezsqlite

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type value =
  1. | Null
  2. | Blob of Stdlib.Bytes.t
  3. | Text of string
  4. | Double of float
  5. | Integer of Stdlib.Int64.t

Datatypes that can be stored by SQLite

type kind =
  1. | INTEGER
  2. | DOUBLE
  3. | TEXT
  4. | BLOB
  5. | NULL
exception Invalid_type
val is_null : value -> bool
val to_string : value -> string
val get_string : value -> string
val get_bytes : value -> Stdlib.Bytes.t
val get_float : value -> float
val get_int : value -> int
val get_int64 : value -> int64
val get_bool : value -> bool