Module Rel

Relational databases.

Rel has typed combinators to describe your database schema in OCaml. See the tutorial and schema howto for more information.

This module defines only modules, open it to describe your database.

type 'a fmt = Stdlib.Format.formatter -> 'a -> unit

The type for formatters of type 'a.

type 'a eq = 'a -> 'a -> bool

The type for equality functions on type 'a.

module Type : sig ... end

Column types.

module Col : sig ... end

Column definitions.

module Row : sig ... end

Row definitions.

module Table : sig ... end

Table definitions.

module Schema : sig ... end

Schema descriptions.