macro_rules! query_file_unchecked {
($path:literal) => { ... };
($path:literal, $($args:tt)*) => { ... };
}Available on crate feature
macros only.Expand description
Compile-time SQL query read from a file (unchecked variant).
Like query_file! but does not verify the query against a live
database or offline cache.
Requires the macros feature.