MakePostgreSql.Databaseinclude Sihl_core.Container.Service.Sigval lifecycle : Sihl_core.Container.Lifecycle.tval fetch_pool : unit -> (Caqti_lwt.connection, Caqti_error.t) Caqti_lwt.Pool.tfetch_pool () returns the connection pool.
val query : Sihl_core.Ctx.t -> (Caqti_lwt.connection -> 'a Lwt.t) -> 'a Lwt.tquery ctx f runs the query f on the connection pool and returns the result. If the query fails the Lwt.t fails as well.
val transaction :
Sihl_core.Ctx.t ->
(Caqti_lwt.connection -> 'a Lwt.t) ->
'a Lwt.ttransaction ctx f runs the query f on the connection pool in a transaction and returns the result. If the query fails the Lwt.t fails as well and the transaction gets rolled back. If the database driver doesn't support transactions, transaction gracefully becomes query.
val register : unit -> Sihl_core.Container.Service.t