packagecaqti
Install
dune-project
Dependency
Authors
Maintainers
Sources
sha256=b8ea432820154ec095132c4f7b244b06cd8553e0b2035185b844d9c4f30af8bb
sha512=b7e3ad8e6a9b587db2d517e15cd42df2945148f9223b2fa6f4bc2bcdd2709d53549cca4b65e54511d22466e4c9aa7f0b9c17305a07505519d8bf81d95de629b8
Description
Caqti provides a monadic cooperative-threaded OCaml connector API forrelational databases.
The purpose of Caqti is further to help make applications independent of aparticular database system. This is achieved by defining a common signature,which is implemented by the database drivers. Connection parameters arespecified as an URI, which is typically provided at run-time. Caqti thenloads a driver which can handle the URI, and provides a first-class modulewhich implements the driver API and additional convenience functionality.
Caqti does not make assumptions about the structure of the query language,and only provides the type information needed at the edges of communicationbetween the OCaml code and the database; i.e. for encoding parameters anddecoding returned tuples. It is hoped that this agnostic choice makes it asuitable target for higher level interfaces and code generators.
Published:02 Apr 2025
README
Synopsis
Caqti provides a monadic cooperative-threaded OCaml connector API for relational databases.
The purpose of Caqti is further to help make applications independent of a particular database system. This is achieved by defining a common signature, which is implemented by the database drivers. Connection parameters are specified as an URI, which is typically provided at run-time. Caqti then loads a driver which can handle the URI, and provides a first-class module which implements the driver API and additional convenience functionality.
Caqti does not generate or analyze SQL but provides templating and uniform query parameter handling, including encoding and decoding data according to declared types. It is hoped that this agnostic choice makes it a suitable target for higher level interfaces and code generators.
The following drivers are available:
RDBMS | URI scheme | library | Unix | MirageOS ---------- | --------------- | -------------- | ---- | -------- MariaDB |mariadb://
|mariadb | yes | no PostgreSQL |postgresql://
|postgresql | yes | no PostgreSQL |pgx://
|pgx | yes | yes SQLite3 |sqlite3://
|sqlite3 | yes | no
The PGX based driver is experimental and only recommended for MirageOS. More about the drivers below.
Documentation
Tutorials and Examples
- Thecaqti-study repository is a tutorial with examples, which we will keep up to date with the latest release of Caqti. It is work in progress; suggestions and contributions are welcome.
- Interfacing OCaml and PostgreSQL with Caqti by Bobby Priambodo gives a gentle introduction, though the Caqti API has changed to some extend since it was written.
- The documented example in this repository can give a first idea.
API Documentation for Stable Releases
The stable API documentation is hosted onhttps://ocaml.org, where you can search package by name.
A full Caqti release contains the following packages:
- caqti: Core libraries and blocking unix connector.
- caqti-lwt: Lwt support library and connector.
- caqti-async: Async connector.
- caqti-eio: Experimental EIO connector.
- caqti-miou: Experimental Miou connector.
- caqti-mirage: Experimental MirageOS connector.
- caqti-driver-mariadb: Driver for MariaDB and MySQL using C bindings frommariadb.
- caqti-driver-postgresql: Driver for PostgreSQL using C bindings frompostgresql.
- caqti-driver-sqlite3: Driver for local SQlite3 databases using C bindings fromsqlite3.
- caqti-driver-pgx: Experimental driver for PostgreSQL using thepgx library.
- caqti-tls: TLS configuration currently only used by caqti-mirage, and only relevant for pgx, since drivers based on C bindings have external TLS support.
The connector modules provide a connect functions which receives an URI, dispatches to an appropriate driver, and returns a connection object as a first-class module, which contains query functionality for the database. The application can either link against the drivers it needs or the link against thecaqti.plugin
library in order to load the appropriate driver at runtime.
(A few package not mentioned include unreleased TLS packages and the semi-deprecated packagescaqti-type-calendar andcaqti-dynload.)
API Documentation for Development Snapshots
Apart from the above links, theGitHub pages are updated occasionally with a rendering from the master branch. You can also build the API reference matching your installed version usingodig or rundune build @doc
in a Git checkout.
Running under utop
Dynamic linking does not work under utop. The workaround is to link against the needed database driver. E.g.
# #require "caqti-lwt";;# #require "caqti-driver-postgresql";;# open Lwt.Infix;;# open Caqti_request.Infix;;(* Create a DB handle. *)# module Db = (val Caqti_lwt_unix.connect (Uri.of_string "postgresql://") >>= Caqti_lwt.or_fail |> Lwt_main.run);;module Db : Caqti_lwt.CONNECTION(* Create a request which merely adds two parameters. *)# let plus = Caqti_request.(Caqti_type.(t2 int int) ->! Caqti_type.int) "SELECT ? + ?";;val plus : (int * int, int, [< `Many | `One | `Zero > `One ]) Caqti_request.t = <abstr>(* Run it. *)# Db.find plus (7, 13);;- : (int, [> Caqti_error.call_or_retrieve ]) result = Ok 20
Related Software
- ppx_rapper - a syntax extension for Caqti queries, simplifying type specifications.
Sponsor
Dependencies (15)
- x509
- uri
>= "2.2.0"
- tls
- ptime
- ocaml
>= "4.08.0"
- mtime
>= "2.0.0"
- lwt-dllist
- lru
>= "0.3.1"
- logs
- ipaddr
>= "3.0.0"
- dune-site
- dune
>= "3.9"
- domain-name
>= "0.2.0"
- bigstringaf
- angstrom
>= "0.14.0"
Dev Dependencies (5)
Used by (15)
- builder-web
>= "0.2.0"
- caqti-async
>= "2.2.4"
- caqti-driver-mariadb
>= "2.2.4"
- caqti-driver-pgx
>= "2.2.4"
- caqti-driver-postgresql
>= "2.2.4"
- caqti-driver-sqlite3
>= "2.2.4"
- caqti-dynload
>= "2.0.1"
- caqti-eio
>= "2.2.4"
- caqti-lwt
>= "2.2.4"
- caqti-miou
- caqti-mirage
>= "2.2.4"
- caqti-tls
>= "2.1.2"
- caqti-type-calendar
>= "2.0.1"
- dream
>= "1.0.0~alpha6"
- petrol
Conflicts (1)
- result
< "1.5"