This project provides a Rust procedural macro to help with using SQL database in Rust. The procedural macro build methods on a given struct to allow an SQL table to be created, populated and items queried, added, modified and deleted.
The following Rust SQL wrapper are supported:
* rusqlite
The procedural macro is currently tied to rusqlite
that needs to be added to your Cargo.toml
. If not added, your
project will not compile.
To use this project procedural macro, add the following in your Cargo.toml
:
[dependencies]
derive-sql = { version = "0.2" }
And annotate your struct as follows: ``` use derive_sql::DeriveSql;
struct Person { id: 32, name: String, } ```
And use the generated functions:
cargo doc --open
Checkout the example tests using in-memory SQLite database in the tests
folder.
This project is licensed under MIT license.