pub fn raw_query(
path: &Path,
sql: &str,
order_table: Option<&str>,
) -> Result<(Vec<String>, Vec<Vec<Value>>), SqliteError>Expand description
Execute pushed-down SQL directly (read-only): the column names
and rows, ordered by order_table’s key when one is given (the
pushdown contract: row order must match the adapter’s document
order, which is that key).