macro_rules! query_unchecked {
($query:expr) => { ... };
($query:expr, $($args:tt)*) => { ... };
}Available on crate feature
macros only.Expand description
Compile-time checked SQL query (unchecked variant — skips database verification at compile time).
Like query! but does not require DATABASE_URL or an offline cache.
Column names and types are not verified against the database schema;
they are inferred from the query text alone.
Requires the macros feature.