package caqti
Install
dune-project
Dependency
Authors
Maintainers
Sources
sha256=7eb57225c521fe25395653d960b1c381bb2b2ccae47bc2a827bb16611988da8b
sha512=eeafaf495b08fb8620ddee1711b8f9fa2ca0c79fb450a905c8d071806b7046d665e1e2ac0e7d3c7ca1258455decbf184e689e9ecb2453ec9d952b864f9dd14f4
doc/caqti/Caqti_query/index.html
Module Caqti_querySource
Query specification.
type t = | L of string(*Literal code. May contain incomplete fragments.
*)| Q of string(*
*)Q scorresponds to aTEXTliteral; passed as part of the query string if a suitable quoting function is available in the client library, otherwise passed as an additional parameter.| P of int(*
*)P irefers to parameter numberi, counting from 0.| E of string(*
*)E nameis expanded by the environemnt lookup function.| S of t list(*
*)S fragsis the concatenation offrags.
A representation of a query string to send to a database, abstracting over parameter references and providing nested concatenation to simplify generation. For databases which only support linear parameters (typically denoted "?"), the driver will reshuffle, elide, and duplicate parameters as needed.
A hash function compatible with equal. The hash function may change across minor versions and may depend on architecture.
pp ppf q prints a human-readable representation of q on ppf. The printed string is not suitable for sending to an SQL database; doing so may lead to an SQL injection vulnerability.
show q is the same human-readable representation of q as printed by pp. The returned string is not suitable for sending to an SQL database; doing so may lead to an SQL injection vulnerability.
concat sep frags is frags interfixed with sep if frags is non-empty and the empty string of frags is empty.
A description of the error caused during expand if the environment lookup function returns an invalid result or raises Not_found for a variable when the expansion is final.
Prints an informative error.
The exception raised by expand when there are issues expanding an environment variable using the provided callback.
expand f q replaces each occurrence of E v some some v with f v or leaves it unchanged where f v raises Not_found. The Not_found exception will not escape this call.
Matches a single expression terminated by the end of input or a semicolon lookahead. The accepted languages is described in The Syntax of Query Templates.
A variant of angstrom_parser which accepts unquoted semicolons as part of the a statement, which is allowed in some cases like for defining SQLite3 triggers. This is the parser used by Caqti_request, where it's assumed that the input is a single SQL statement.
Parses a single expression using angstrom_parser_with_semicolon. The error indicates the byte position of the input string where the parse failure occurred in addition to an error message. See The Syntax of Query Templates for how the input string is interpreted.
qprintf allows building Caqti queries using a printf-style interface.
When using qprintf, you can use the query, quote, env and param printers from this module to generate the corresponding query fragments.
In addition, you can use the "Q" and "E" string tags to delimit portions of the formatting string that should be interpreted as quotes and environment variables, respectively. The "Q" and "E" tags can not be nested: within the tags, qprintf behaves no differently than Format.asprintf and will generate a string, not a query (only when the tag is closed does the string get converted into a query).
The two following calls to qprintf:
qprintf "FUNC(@{<Q>Quoted value with %d format(s)})" 1and
qprintf "FUNC(%a)" quote (Format.asprintf "Quoted value with %d format(s)" 1)are functionally equivalent. Both compute
S [L "FUNC("; Q "Quoted value with 1 format(s)"; L ")"]but the first one is nicer to work with.
kqprintf is the continuation-passing version of qprintf (like Format.kasprintf for Format.asprintf).
You usually want qprintf instead.
query can be used with qprintf to embed a query that was already parsed in the format string. Direct use of query should be rare, and param, env, or quote should be used instead when possible.
Using query with any other formatter will ignore the query and instead print a dummy value (currently "... SQL FRAGMENT ...") instead.