Function sqlx_core::query::query_statement_with

source ยท
pub fn query_statement_with<'q, DB, A>(
    statement: &'q <DB as HasStatement<'q>>::Statement,
    arguments: A,
) -> Query<'q, DB, A>
where DB: Database, A: IntoArguments<'q, DB>,
Expand description

Execute a single SQL query as a prepared statement (explicitly created), with the given arguments.