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
error: Expected `SELECT` at the beginning of SQL filter, got `FROM` instead
 --> tests/ui/fail-nightly/missing_select.rs:5:9
  |
5 |         FROM users WHERE  // Missing SELECT clause
  |         ^^^^
  |
  = help: SQL filter must start with `SELECT` followed by columns, table and WHERE clause
  = note: It is case insensitive so `select` will also work.