• Stars
    star
    283
  • Rank 141,556 (Top 3 %)
  • Language
    OCaml
  • License
    GNU Lesser Genera...
  • Created about 10 years ago
  • Updated 3 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Cooperative-threaded access to relational data

CircleCI

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 make assumptions about the structure of the query language, and only provides the type information needed at the edges of communication between the OCaml code and the database; i.e. for encoding parameters and decoding returned tuples. It is hoped that this agnostic choice makes it a suitable target for higher level interfaces and code generators.

Drivers

The following drivers are available.

  • MariaDB (mariadb://)
    • Implemented in terms of ocaml-mariadb using asynchronous calls.
    • Supports transactions.
    • Pools connections and caches statements.
  • PostgreSQL (postgresql://)
    • Implemented in terms of postgresql-ocaml using asynchronous calls.
    • Supports transactions.
    • Pools connections and caches statements.
  • SQLite3 (sqlite3://)
    • Implemented in terms of sqlite3-ocaml using preemptive threading for non-blocking operation.
    • Supports transactions.
    • Does not pool connections but caches statements.

If you link against caqti-dynload, then drivers are loaded dynamically based on the URI. If dynamic loading is unavailable on your platform, you may instead link against the caqti-driver-* libraries which you expect to use.

Documentation

For a gentle introduction, I recommend reading Interfacing OCaml and PostgreSQL with Caqti by Bobby Priambodo. There is also a documented example in this repository.

A recent rendering of the full API reference is available online. You can also generate the API reference matching your installed version using odig. Finally, topkg doc builds the reference from a Git checkout using topkg-care.

As the main entry point, you would normally use either of

Caqti_lwt : Caqti_connect_sig.S with type 'a future := 'a Lwt.t
Caqti_async : Caqti_connect_sig.S with type 'a future := 'a Deferred.t
Caqti_blocking : Caqti_connect_sig.S with type 'a future := 'a

provided by caqti-lwt, caqti-async, and caqti.blocking, respectively. These provide a connect functions which receives an URI, loads the appropriate driver, and returns a connection as a first-class module containing query functionality for the database.

The most important modules to know about are:

  • Caqti_type and Caqti_request for constructing prepared or one-shot queries.
  • Caqti_lwt, Caqti_async, and Caqti_blocking for connecting to the database and obtaining a first class module implementing Caqti_connection_sig.S.
  • Caqti_connection_sig.S and Caqti_response_sig.S for executing queries.

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.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.(tup2 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

OCSF logo Thanks to the OCaml Software Foundation for economic support to the development of Caqti.

More Repositories

1

ppx_regexp

Matching Regular Expressions with OCaml Patterns
OCaml
57
star
2

episql

SQL schema parser and code generator
OCaml
28
star
3

ocaml-radixmap

Map Γ  la Binary Radix Tree
OCaml
20
star
4

batyr

A jabber logger and web interface
OCaml
13
star
5

ocaml-bitpath

Efficient bit-string type along with containers to partition data on variable-length bit-strings.
OCaml
12
star
6

ephca

OCaml
10
star
7

ocaml-prime

Supplements to the OCaml library
OCaml
9
star
8

ocaml-cumulus

Differential FRP based on the React library
OCaml
8
star
9

caqti-study

OCaml
7
star
10

inhca

In-House CA
OCaml
6
star
11

ppx_deriving_random

Syntax extension to generate random instances of types
OCaml
6
star
12

viz

The Viz Language
OCaml
6
star
13

iplogic

A DSL for generating iptables firewall scripts.
OCaml
6
star
14

tuplet

Arity-generic API for tuple representations
OCaml
6
star
15

confero

Unicode collation library for OCaml
OCaml
6
star
16

ocaml-cothrift

Concurrent Thrift Runtime for OCaml
OCaml
5
star
17

ocaml-mediawiki-api

MediaWiki API
OCaml
5
star
18

panograph

Data-Centric Widgets for Eliom
OCaml
4
star
19

subsocia

People, organizational data, and access control
OCaml
3
star
20

ocaml-kojson

Combinators for matching JSON
OCaml
3
star
21

ocaml-iso639

Language codes for OCaml
OCaml
3
star
22

culibs

Garbage Collected C Libraries
C
3
star
23

ppx_static

Syntax extension to lift constants out of abstractions
OCaml
2
star
24

ocaml-caqti-sqlgg

Code generator for Caqti built on sqlgg
OCaml
2
star
25

ppx_compose

Composition Inlining for OCaml
OCaml
1
star
26

spreadsheet-demo

An FRP Experiment
OCaml
1
star
27

opam-repo-paurkedal

OCaml
1
star
28

subsocia-sync-ldap

LDAP to Subsocia Synchronization
OCaml
1
star
29

ocaml-gmetric

Ganglia metric publishing from OCaml
OCaml
1
star