package sqlite3

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t =
  1. | NONE
  2. | NULL
  3. | INT of int64
  4. | FLOAT of float
  5. | TEXT of string
  6. | BLOB of string

Type of columns

val to_string : t -> string

to_string data converts data to a string. Both NONE and NULL are converted to the empty string.

val to_string_debug : t -> string

to_string_debug data converts data to a string including the data constructor. The contents of blobs will not be printed, only its length. Useful for debugging.