macro_rules! query_scalar_unchecked { ($query:expr) => { ... }; ($query:expr, $($args:tt)*) => { ... }; }
Expand description
A variant of query_scalar!
which does not typecheck bind parameters
and leaves the output type to inference.
The query itself is still checked that it is syntactically and semantically
valid for the database, that it only produces one column and that the number of bind parameters
is correct.
For this macro variant the name of the column is irrelevant.