sqlx-utils 1.1.3

Utilities for working with SQLx in a structured and efficient way, both when developing and running
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
error: The keyword `WHERE` is reserved and cant be used as a table name

         = help: Any identifier is allowed in this location except for `WHERE`

 --> tests/ui/fail-try-parse/missing_table_and_operator.rs:5:23
  |
5 |         SELECT * FROM WHERE  // Missing FROM clause
  |                       ^^^^^

error: Invalid SQL operator `EQUALS`

         = help: Supported operators are: =, !=, >, <, >=, <=, LIKE, ILIKE, IN, NOT IN

 --> tests/ui/fail-try-parse/missing_table_and_operator.rs:6:12
  |
6 |         id EQUALS i32
  |            ^^^^^^