package yosqlite

  1. Overview
  2. Docs
Simple Sqlite3. Yojson+Sqlite3 amalgamation

Install

dune-project
 Dependency

Authors

Maintainers

Sources

0.2.tar.gz
md5=8e3343322dc89bda508a112c3c8526c0
sha512=f507233fe8e537cf4685dde19a2df63077054ff226af536329f5bec0665061ca941e450d1f24c1ed5782f2eada599c826ed40b9fa6cfa28b0a21da9b9977bee8

doc/yosqlite/Yosqlite/index.html

Module YosqliteSource

Sourceval db_open : ?mode:??? -> ?uri:??? -> ?memory:??? -> ?mutex:??? -> ?cache:??? -> ?vfs:??? -> string -> Sqlite3.db
Sourceval db_close : Sqlite3.db -> bool
Sourcetype binding = [
  1. | `Null
  2. | `Int of Base.int
  3. | `Float of Base.float
  4. | `String of Base.string
]
Sourcetype record = [
  1. | `Assoc of (Base.string * Yojson.Safe.t) Base.list
]
Sourceval execute : ?bind:??? -> sql:Base.string -> Sqlite3.db -> Base.unit
Sourceval fetch : ?bind:??? -> sql:Base.string -> Sqlite3.db -> Yojson.Safe.t Base.list