package ezsqlite

  1. Overview
  2. Docs

Module Ezsqlite.ValueSource

Sourcetype value =
  1. | Null
  2. | Blob of Bytes.t
  3. | Text of string
  4. | Double of float
  5. | Integer of Int64.t

Datatypes that can be stored by SQLite

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