sql-forge 0.5.0

Proc-macro combining compile-time SQL validation with a runtime QueryBuilder for dynamic queries using named parameters.
Documentation
1
2
3
4
5
6
7
8
9
10
11
error: error returned from database: syntax error at or near "`" at line 1236
  --> tests/postgres/ui/postgres_backtick_alias_not_supported.rs:9:13
   |
 9 |       let _ = sql_forge!(
   |  _____________^
10 | |         Row,
11 | |         "SELECT 1 AS `field_name: _`",
12 | |     );
   | |_____^
   |
   = note: this error originates in the macro `$crate::sqlx_macros::expand_query` which comes from the expansion of the macro `sql_forge` (in Nightly builds, run with -Z macro-backtrace for more info)