4 releases

0.1.4 Mar 27, 2024
0.1.3 Jul 12, 2023
0.1.2 Feb 16, 2023
0.1.1 Feb 15, 2023

#1027 in Database interfaces

Download history 118/week @ 2023-12-20 55/week @ 2023-12-27 159/week @ 2024-01-03 160/week @ 2024-01-10 158/week @ 2024-01-17 183/week @ 2024-01-24 152/week @ 2024-01-31 177/week @ 2024-02-07 201/week @ 2024-02-14 196/week @ 2024-02-21 192/week @ 2024-02-28 245/week @ 2024-03-06 252/week @ 2024-03-13 192/week @ 2024-03-20 257/week @ 2024-03-27 289/week @ 2024-04-03

1,039 downloads per month

MIT/Apache

9KB

Conditional compile-time verified queries with SQLx

github crates.io docs.rs

This crate provides a macro for generating conditional compile-time verified queries while using the SQLx query_as! macro. This allows you to have parts of the query conditional in ways in which your chosen database doesn't allow by emitting multiple query_as! invocations that are chosen over by a match statement.

Variant growth

Note that this means that we end up emitting as many query_as! invocations as there are elements in the Cartesian product of all of the different conditionals. This means that the number of variants increase very rapidly!

Features

Which database type should be supported is specified by activating one of the following features. If more than one feature is activated then the first one in the list takes precedence.

  • postgres
  • mysql
  • sqlite

License

Licensed under either of Apache License, Version 2.0 or MIT license at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this crate by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~0.8–1.3MB
~28K SLoC