package sqlexpr

  1. Overview
  2. Docs
module Types : sig ... end
type st = Types.st
exception Error of string * exn
exception Sqlite_error of string * Sqlite3.Rc.t
module type S = sig ... end
type single_worker_db
module Make (M : Sqlexpr_concurrency.THREAD with type 'a key = 'a Lwt.key) : sig ... end
module type POOL = sig ... end
module Make_gen (M : Sqlexpr_concurrency.THREAD) (P : POOL with type 'a result = 'a M.t) : S with type 'a result = 'a M.t
val prettify_sql_stmt : string -> string
val string_of_param : Sqlite3.Data.t -> string
val string_of_params : Sqlite3.Data.t list -> string
module Stmt : sig ... end
module Stmt_cache : sig ... end
module Profile (M : Sqlexpr_concurrency.THREAD) : sig ... end