pub fn query_with<'q, DB, A>(
    sql: impl SqlSafeStr,
    arguments: A,
) -> Query<'q, DB, A>where
    DB: Database,
    A: IntoArguments<DB>,Expand description
Execute a SQL query as a prepared statement (transparently cached), with the given arguments.
See query() for details, such as supported syntax.