Page
Library
Module
Module type
Parameter
Class
Class type
Source
SQLite3-OCaml is an OCaml library with bindings to the SQLite3 client API. Sqlite3 is a self-contained, serverless, zero-configuration, transactional SQL database engine with outstanding performance.
The design of these bindings allows for a friendly coexistence with the old (version 2) SQLite and its OCaml wrapper ocaml-sqlite
.
The API documentation is in file src/sqlite3.mli
and also here: online.
SQLite3 has its own online documentation.
The test
-directory in this distribution contains simple examples for testing features of this library. You can execute the tests by running: dune runtest
.
SQLite3-OCaml depends on pkg-config
to locate and compile against an SQLite3 library.
If the SQLite3 version is greater than or equal to 3.3.7, the assumption is that it supports Run-Time Loadable Extensions. If this feature has been explicitly disabled in the library, building applications will fail with something like:
Undefined symbols for architecture …:
"_sqlite3_enable_load_extension", referenced from:
_caml_sqlite3_enable_load_extension in libsqlite3_stubs.a(sqlite3_stubs.o)
OMIT_LOAD_EXTENSION
.pkg-config
will look for the SQLite3 library, set the PKG_CONFIG_PATH
environment variable to the new directory. Setting the SQLITE3_OCAML_BREWCHECK
environment variable automates this. This will instruct the build to check for the installation of a brewed version of SQLite and route pkg-config
appropriately.configure
with the flag --disable-loadable-extensions
or by setting the environment variable SQLITE3_DISABLE_LOADABLE_EXTENSIONS
if linking problems persist.Please submit bugs reports, feature requests, contributions to the GitHub issue tracker.
Up-to-date information is available at: https://mmottl.github.io/sqlite3-ocaml