package postgres_async
Install
Dune Dependency
Authors
Maintainers
Sources
sha256=a16891d85104f65c907f31f198f09acf261f72f868ab2e2188dd4ebdc874575f
md5=8307c0f3a8fb33494e00894c6f583307
Description
postgres_async is an OCaml PostgreSQL client that implements the PostgreSQL protocol rather than binding to the libpq C library. It provides support for regular queries (including support for 'parameters': "SELECT * WHERE a = $1") and COPY IN mode. The interface presented is minimal to keep the library simple for now, though in the future a layer on top may add convenience functions.
Published: 31 May 2020
README
Postgres_async
postgres_async
is an ocaml PostgreSQL client that implements the PostgreSQL protocol rather than binding to the libpq C library. It provides support for regular queries (including support for 'parameters': SELECT * WHERE a = $1
) and COPY IN
mode. The interface presented is minimal to keep the library simple for now, though in the future a layer on top may add convenience functions.
To get started, have a look at the Postgres_async module interface in src/postgresql_async.mli
.