package sihl
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
The Sihl web framework
Install
dune-project
Dependency
Authors
Maintainers
Sources
3.0.4.tar.gz
md5=8a2754d6e5b9eafb8ff332abdb1ceb7d
sha512=3230a1315686b0b6f90a41ceda27ab036e178184ab13d5a98f64d6d987caf4a8a5d94ed78bc8e79b0ee3b40ccbb1dbdc71ffe171f1aef1f18aba81fc720e3a1b
doc/src/sihl/contract_database.ml.html
Source file contract_database.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 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239type database = | MariaDb | PostgreSql (* Signature *) let name = "database" exception Exception of string module type Sig = sig (** ['a prepared_search_request] is a prepared SQL statement that can be used to sort, filter and paginate (= search) a collection. *) type 'a prepared_search_request val prepare_requests : string -> string -> string -> string (* Deprecated in 0.6.0 *) [@@deprecated "Use prepare_search_request instead"] (** [prepare_search_request ~search_query ~count_query ~filter_fragment ?sort_by_field type] returns a prepared SQL statement ['a prepared_search_request] by assembling the SQL query from the provided fragments. [search_query] is the [SELECT ... FROM table] part of the query. [count_query] is a query that is executed by Sihl after the search in order to obtain the total number of items in the table. For example [SELECT COUNT(\*\) FROM table]. [filter_fragment] is the fragment that is appended to [search_query] for filtering. Usually you want ot [OR] fields that are often searched for. For example [WHERE table.field1 LIKE $1 OR table.field2 $1 OR table.field3 LIKE $1]. [sort_by_field] is an optional field name that is used for sorting. By default, the field "id" is used. Note that in order to prepare the requests, the sort field has to be known beforehand. If you want to dynamically set the field, you need to write your own query at runtime. [format_filter] is a function applied to the filter keyword before it is passed to the database. By default, a keyword "keyword" is formatted to "%skeyword%s". This might not be what you want performance-wise. If you need full control, pass in the identity function and format the keyword yourself. [type] is the caqti type of an item of the collection. *) val prepare_search_request : search_query:string -> filter_fragment:string -> ?sort_by_field:string -> ?format_filter:(string -> string) -> 'a Caqti_type.t -> 'a prepared_search_request val run_request : (module Caqti_lwt.CONNECTION) -> 'a prepared_search_request -> [< `Asc | `Desc ] -> 'c option -> 'a -> ('b list * int) Lwt.t (* Deprecated in 0.6.0 *) [@@deprecated "Use run_search_request instead"] (** [run_search_request ?ctx prepared_request sort filter ~limit ~offset] runs the [prepared_request] and returns a partial result of the whole stored collection. The second element of the result tuple is the total amount of items in the whole collection. [prepared_request] is the returned prepared request by {!prepare_search_request}. [sort] is the sort order. The field that is sorted by was set by {!prepare_search_request}. [filter] is an optional keyword that is used to filter the collection. If no filter is provided, the collection is not filtered. [offset] is the number of items that the returned partial result is offset by. [limit] is the number of items of the returned partial result. [offset] and [limit] can be used together to implement pagination. An optional [ctx] can be provided. The tuple [("pool", "pool_name")] selects the pool ["pool_name"]. Make sure to initialize the pool with {!add_pool} beforehand. *) val run_search_request : ?ctx:(string * string) list -> 'a prepared_search_request -> [ `Asc | `Desc ] -> string option -> limit:int -> offset:int -> ('a list * int) Lwt.t (** [raise_error err] raises a printable caqti error [err] .*) val raise_error : ('a, Caqti_error.t) Result.t -> 'a (** [fetch_pool ?ctx ()] returns the connection pool referenced in [ctx] or the default connection pool if no connection pool is referenced. An optional [ctx] can be provided. The tuple [("pool", "pool_name")] selects the pool ["pool_name"]. Make sure to initialize the pool with {!add_pool} beforehand. *) val fetch_pool : ?ctx:(string * string) list -> unit -> (Caqti_lwt.connection, Caqti_error.t) Caqti_lwt.Pool.t (** [add_pool ~pool_size name database_url] creates a connection pool with a unique [name]. Creation fails if a pool with the same name was already created to avoid overwriting connection pools accidentally. The connection to the database is established. The pool can be referenced with its [name]. The service context can contain the pool name under the key `pool` to force the usage of a certain pool. A [pool_size] can be provided to define the number of connections that should be kept open. The default is 10. *) val add_pool : ?pool_size:int -> string -> string -> unit (** [find_opt ?ctx request input] runs a caqti [request] where [input] is the input of the caqti request and returns one row or [None]. Returns [None] if no rows are found. Note that the caqti request is only allowed to return one or zero rows, not many. An optional [ctx] can be provided. The tuple [("pool", "pool_name")] selects the pool ["pool_name"]. Make sure to initialize the pool with {!add_pool} beforehand. *) val find_opt : ?ctx:(string * string) list -> ('a, 'b, [< `One | `Zero ]) Caqti_request.t -> 'a -> 'b option Lwt.t (** [find ?ctx request input] runs a caqti [request] where [input] is the input of the caqti request and returns one row. Raises an exception if no row was found. Note that the caqti request is only allowed to return one or zero rows, not many. An optional [ctx] can be provided. The tuple [("pool", "pool_name")] selects the pool ["pool_name"]. Make sure to initialize the pool with {!add_pool} beforehand. *) val find : ?ctx:(string * string) list -> ('a, 'b, [< `One ]) Caqti_request.t -> 'a -> 'b Lwt.t (** [collect ?ctx request input] runs a caqti [request] where [input] is the input of the caqti request and retuns a list of rows. Note that the caqti request is allowed to return one, zero or many rows. An optional [ctx] can be provided. The tuple [("pool", "pool_name")] selects the pool ["pool_name"]. Make sure to initialize the pool with {!add_pool} beforehand. *) val collect : ?ctx:(string * string) list -> ('a, 'b, [< `One | `Zero | `Many ]) Caqti_request.t -> 'a -> 'b list Lwt.t (** [exec ?ctx request input] runs a caqti [request]. Note that the caqti request is not allowed to return any rows. Use {!exec} to run mutations. An optional [ctx] can be provided. The tuple [("pool", "pool_name")] selects the pool ["pool_name"]. Make sure to initialize the pool with {!add_pool} beforehand. *) val exec : ?ctx:(string * string) list -> ('b, unit, [< `Zero ]) Caqti_request.t -> 'b -> unit Lwt.t (** [query ?ctx f] runs the query [f] and returns the result. If the query fails the Lwt.t fails as well. An optional [ctx] can be provided. The tuple [("pool", "pool_name")] selects the pool ["pool_name"]. Make sure to initialize the pool with {!add_pool} beforehand. *) val query : ?ctx:(string * string) list -> (Caqti_lwt.connection -> 'a Lwt.t) -> 'a Lwt.t (** [query' ?ctx f] runs the query [f] and returns the result. Use [query'] instead of {!query} as a shorthand when you have a single caqti request to execute. An optional [ctx] can be provided. The tuple [("pool", "pool_name")] selects the pool ["pool_name"]. Make sure to initialize the pool with {!add_pool} beforehand. *) val query' : ?ctx:(string * string) list -> (Caqti_lwt.connection -> ('a, Caqti_error.t) Result.t Lwt.t) -> 'a Lwt.t (** [transaction ?ctx f] runs the query [f] 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}. An optional [ctx] can be provided. The tuple [("pool", "pool_name")] selects the pool ["pool_name"]. Make sure to initialize the pool with {!add_pool} beforehand. *) val transaction : ?ctx:(string * string) list -> (Caqti_lwt.connection -> 'a Lwt.t) -> 'a Lwt.t (** [transaction' ?ctx f] runs the query [f] 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'}. An optional [ctx] can be provided. The tuple [("pool", "pool_name")] selects the pool ["pool_name"]. Make sure to initialize the pool with {!add_pool} beforehand. *) val transaction' : ?ctx:(string * string) list -> (Caqti_lwt.connection -> ('a, Caqti_error.t) Result.t Lwt.t) -> 'a Lwt.t val register : unit -> Core_container.Service.t include Core_container.Service.Sig end
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>