An SQL query builder for sqlx. Work in progress
Suppose you have a table like this:
sql
CREATE TABLE book(
id INTEGER NOT NULL PRIMARY KEY,
title TEXT NOT NULL,
year SMALLINT NOT NULL,
author TEXT
);
The CRUD (or ISUD with sql acronym) will be look like this:
INSERT
statement.```rust let values = [ ( 1i32, &"The Fellowship of the Rings".tostring(), 1954i16, &"J. R. R. Tolkien".tostring(), ), ( 2i32, &"Dune".tostring(), 1965i16, &"Frank Herbret".tostring() ), ]; let insert = xql::insert("book", ["id", "title", "year", "author"]) .values(values) .returning(["id"]);
asserteq!( insert.tostring(), "INSERT INTO book(id, title, year, author) VALUES \ (1, 'The Fellowship of the Rings', 1954, 'J. R. R. Tolkien'), \ (2, 'Dune', 1965, 'Frank Herbret') \ RETURNING id", ); ```
SELECT
statement.```rust let select = xql::select(["id", "title"]) .from("book") .filter(xql::or( xql::eq("id", 1), xql::eq("id", 2), )) .order_by(xql::desc("year"));
asserteq!( select.tostring(), "SELECT id, title \ FROM book \ WHERE id = 1 OR id = 2 \ ORDER BY year DESC" ); ```
UPDATE
statement.```rust let author = &"Frank Herbert".to_string(); let update = xql::update("book") .set("author", author) .filter(xql::eq("id", 2)) .returning(["id"]);
asserteq!( update.tostring(), "UPDATE book \ SET author = 'Frank Herbert' \ WHERE id = 2 \ RETURNING id", ); ```
DELETE
statement.```rust let delete = xql::delete("book") .filter(xql::eq("id", 1)) .returning(["id", "title"]);
asserteq!( delete.tostring(), "DELETE FROM book \ WHERE id = 1 \ RETURNING id, title", ); ```
To execute those queries, add sqlx to dependencies and enable the backend.
```rust no_run
async fn execute(pool: sqlx::Pool
async fn execute(pool: sqlx::Pool
async fn execute(pool: sqlx::Pool