pub fn query_with_params<Input: Serialize, Output: DeserializeOwned>(
    query: &str,
    connection: &Connection,
    params: &Input
) -> Result<Vec<Output>, Error>
Expand description

Execute the given SELECT query against the given transaction with the given parameters, returning the result.