rizzle is an automatic migration generator and query builder for sqlite (*postgres coming at some point) for rust!
May or may not be inspired by drizzle
sh
cargo add rizzle
```rust use rizzle::prelude::*;
struct Posts { #[rizzle(primary_key)] id: Integer,
#[rizzle(not_null)] body: Text }
struct Comments { #[rizzle(primary_key)] id: Integer,
#[rizzle(not_null)]
body: Text,
#[rizzle(references = "posts(id)")]
post_id: Integer,
}
struct Schema { posts: Posts, comments: Comments }
async fn main() -> Result<(), RizzleError> { let options = DatabaseOptions::new("sqlite://:memory:"); let schema = Schema::new(); let db = rizzle(options, schema).await?; Ok(()) } ```
```rust use rizzle::prelude::*;
struct Post { id: i64, body: String }
async fn main() -> Result<(), RizzleError> { let options = DatabaseOptions::new("sqlite://:memory:"); let schema = Schema::new(); let db = rizzle(options, schema).await?; let Schema { posts, .. } = schema;
// insert into posts (id, body) values (?, ?) returning *
let inserted_post: Post = db
.insert(posts)
.values(Post {
id: 1,
body: "".to_owned(),
})
.returning()
.await?;
// update posts set body = ?, id = ? where id = ?
let rows_affected = db
.update(posts)
.set(Post {
body: "post".to_owned(),
..inserted_post
})
.where(eq(posts.id, 1))
.rows_affected()
.await?;
// delete from posts where id = ? returning *
let deleted_post = db.delete(posts).where(eq(posts.id, 1)).returning().await?;
Ok(())
} ```
```rust use rizzle::prelude::*;
struct Comment { id: i64, body: String, post_id: i64 }
async fn main() -> Result<(), RizzleError> { let options = DatabaseOptions::new("sqlite://:memory:"); let schema = Schema::new(); let db = rizzle(options, schema).await?; let Schema { comments, .. } = schema;
// select * from comments
let rows: Vec<Comment> = db.select().from(comments).all().await;
Ok(())
} ```
```rust use rizzle::prelude::*;
struct PartialComment { body: String }
async fn main() -> Result<(), RizzleError> { let options = DatabaseOptions::new("sqlite://:memory:"); let schema = Schema::new(); let db = rizzle(options, schema).await?; let Schema { comments, .. } = schema; let partial_comment = PartialComment::default();
// select body from comments
let partial_rows: Vec<PartialComment> = db.select_with(partial_comment).from(comments).all().await;
Ok(())
} ```
```rust use rizzle::prelude::*;
async fn main() -> Result<(), RizzleError> { let options = DatabaseOptions::new("sqlite://:memory:"); let schema = Schema::new(); let db = rizzle(options, schema).await?; let Schema { comments, posts } = schema;
// select * from comments inner join posts on posts.id = comments.post_id
let rows: Vec<Comment> = db
.select()
.from(comments)
.inner_join(posts, on(posts.id, comments.post_id))
.all()
.await;
Ok(())
} ```
```rust use rizzle::prelude::*;
async fn main() -> Result<(), RizzleError> { let options = DatabaseOptions::new("sqlite://:memory:"); let schema = Schema::new(); let db = rizzle(options, schema).await?; let Schema { comments, .. } = schema;
// select * from comments
let query = db.select().from(comments);
// prepare the query store it in a once lock or something
let prepared = query.prepare_as::<Comment>();
// execute the prepared query later
let rows = prepared.all().await?;
Ok(())
} ```