A variant of [query_as!] which does not check the input or output types. This still does parse
the query to ensure it’s syntactically and semantically valid for the current database.
A variant of [query_file_as!] which does not check the input or output types. This
still does parse the query to ensure it’s syntactically and semantically valid
for the current database.
A variant of query_file_scalar! which does not typecheck bind parameters and leaves the output
type to inference. The query itself is still checked that it is syntactically and
semantically valid for the database, that it only produces one column and that the number of
bind parameters is correct.
A variant of [query_file!] which does not check the input or output types. This still does parse
the query to ensure it’s syntactically and semantically valid for the current database.
A variant of query_scalar! which does not typecheck bind parameters and leaves the output type
to inference. The query itself is still checked that it is syntactically and semantically
valid for the database, that it only produces one column and that the number of bind parameters
is correct.
A variant of [query!] which does not check the input or output types. This still does parse
the query to ensure it’s syntactically and semantically valid for the current database.
Opaque database driver. Capable of being used in place of any SQLx database driver. The actual
driver used will be selected at runtime, from the connection url.