Module query
Source - Map
- A single SQL query that will map its results to an owned Rust type.
- Query
- A single SQL query as a prepared statement. Returned by
query()
.
- query
- Execute a single SQL query as a prepared statement (transparently cached).
- query_statement
- Execute a single SQL query as a prepared statement (explicitly created).
- query_statement_with
- Execute a single SQL query as a prepared statement (explicitly created), with the given arguments.
- query_with
- Execute a SQL query as a prepared statement (transparently cached), with the given arguments.
- query_with_result
- Same as
query_with
but is initialized with a Result of arguments instead