package caqti

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Source file caqti_connect_sig.ml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
(* Copyright (C) 2017--2024  Petter A. Urkedal <paurkedal@gmail.com>
 *
 * This library is free software; you can redistribute it and/or modify it
 * under the terms of the GNU Lesser General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or (at your
 * option) any later version, with the LGPL-3.0 Linking Exception.
 *
 * This library is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
 * License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * and the LGPL-3.0 Linking Exception along with this library.  If not, see
 * <http://www.gnu.org/licenses/> and <https://spdx.org>, respectively.
 *)

(** Signatures providing functions for establishing database connections. *)

module type S = sig

  type +'a fiber
  (** The type of a deferred value of type ['a]. *)

  type +'a with_switch
  (** Adds a switch argument to the type if relevant for the platform. *)

  type +'a with_stdenv
  (** Adds environment argument(s) to the type if relevant for the platform. *)

  type (+'a, +'e) stream
  (** A stream implementation. *)

  type ('a, +'e) pool
  (** A pool implementation for the current concurrency library. *)

  type connection
  (** Shortcut for the connection module when passed as a value. *)

  val connect :
    ?subst: (Caqti_template.Dialect.t -> Caqti_template.Query.subst) ->
    ?env: (Caqti_driver_info.t -> string -> Caqti_query.t) ->
    ?config: Caqti_connect_config.t ->
    ?tweaks_version: int * int ->
    (Uri.t -> (connection, [> Caqti_error.load_or_connect]) result fiber)
    with_stdenv with_switch
  (** [connect uri] locates and loads a driver which can handle [uri], passes
      [uri] to the driver, which establish a connection and returns a
      first-class module implementing {!Caqti_connection_sig.S}.

      [connect uri] connects to the database at [uri] and returns a first class
      module implementing {!Caqti_connection_sig.S} for the given database
      system.  In case of preemptive threading, the connection must only be used
      from the thread where it was created.

      The correct driver for the database system is inferred from the schema of
      [uri]; see the respective drivers for the supported schemas and related
      URI syntax.  A driver can either be linked in to the application or, if
      supported, dynamically linked using the [caqti-dynload] package.

      @param subst
        Alternative to [env] when using the new experimental API.

      @param env
        If provided, this function will do a final expansion of environment
        variables which occurs in the query templates of the requests executed
        on the connection.

      @param config
        Configuration parameters related to the interaction with the database.

      @param tweaks_version
        @deprecated This should now be passed via the [config] parameter using
        the {!Caqti_connect_config.tweaks_version} key. *)

  val with_connection :
    ?subst: (Caqti_template.Dialect.t -> Caqti_template.Query.subst) ->
    ?env: (Caqti_driver_info.t -> string -> Caqti_query.t) ->
    ?config: Caqti_connect_config.t ->
    ?tweaks_version: int * int ->
    (Uri.t ->
     (connection ->
      ('a, [> Caqti_error.load_or_connect] as 'e) result fiber) ->
     ('a, 'e) result fiber)
    with_stdenv
  (** [with_connection uri f] calls {!connect} on [uri]. If {!connect} evaluates
      to [Ok connection], [with_connection] passes the connection to [f]. Once
      [f] either evaluates to a [result], or raises an exception,
      [with_connection] closes the database connection.

      @param subst Passed to {!connect}.
      @param env Passed to {!connect}.
      @param config Passed to {!connect}.
      @param tweaks_version
        @deprecated This should now be passed via the [config] parameter using
        the {!Caqti_connect_config.tweaks_version} key. *)

  val connect_pool :
    ?pool_config: Caqti_pool_config.t ->
    ?post_connect: (connection -> (unit, 'connect_error) result fiber) ->
    ?subst: (Caqti_template.Dialect.t -> Caqti_template.Query.subst) ->
    ?env: (Caqti_driver_info.t -> string -> Caqti_query.t) ->
    ?config: Caqti_connect_config.t ->
    ?tweaks_version: int * int ->
    (Uri.t ->
     ((connection, [> Caqti_error.connect] as 'connect_error) pool,
      [> Caqti_error.load]) result)
    with_stdenv with_switch
  (** [connect_pool uri] is a pool of database connections constructed by
      [connect uri].

      Do not use pooling for connections to volatile resources like
      [sqlite3::memory:] and beware of temporary tables or other objects which
      may not be shared across connections to the same URI.

      If you use preemptive threading, note that the connection pool must only
      be used from the thread where it was created. Use thread local storage to
      create a separate pool per thread if necessary.

      @param pool_config
        Provides tuning parameters for the pool.  The default is the result of a
        fresh call of {!Caqti_pool_config.default_from_env}.

      @param post_connect
        A task to run after establishing a new connection and before the
        connection becomes available to the application.  This function can be
        used to customize to the database session.

      @param config
        Passed to {!connect} when creating new connections.

      @param subst
        Passed to {!connect} when creating new connections.

      @param env
        Passed to {!connect} when creating new connections.

      @param tweaks_version
        @deprecated This should now be passed via the [config] parameter using
        the {!Caqti_connect_config.tweaks_version} key. *)
end