Crates.io | rizzle |
lib.rs | rizzle |
version | 0.1.4 |
source | src |
created_at | 2023-08-31 19:13:26.83481 |
updated_at | 2023-09-20 15:35:51.008893 |
description | A rust query builder and schema generator. Don't call it an ORM |
homepage | https://github.com/swlkr/rizzle |
repository | https://github.com/swlkr/rizzle |
max_upload_size | |
id | 960315 |
size | 57,872 |
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
cargo add rizzle
use rizzle::prelude::*;
#[derive(Table, Clone, Copy)]
#[rizzle(table = "posts")]
struct Posts {
#[rizzle(primary_key)]
id: Integer,
#[rizzle(not_null)]
body: Text
}
#[derive(Table, Clone, Copy)]
#[rizzle(table = "comments")]
struct Comments {
#[rizzle(primary_key)]
id: Integer,
#[rizzle(not_null)]
body: Text,
#[rizzle(references = "posts(id)")]
post_id: Integer,
}
#[derive(RizzleSchema, Clone, Copy)]
struct Schema {
posts: Posts,
comments: Comments
}
#[tokio::main]
async fn main() -> Result<(), RizzleError> {
let options = DatabaseOptions::new("sqlite://:memory:");
let schema = Schema::new();
let db = rizzle(options, schema).await?;
Ok(())
}
use rizzle::prelude::*;
#[derive(Row)]
struct Post {
id: i64,
body: String
}
#[tokio::main]
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(())
}
use rizzle::prelude::*;
#[derive(Row)]
struct Comment {
id: i64,
body: String,
post_id: i64
}
#[tokio::main]
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(())
}
use rizzle::prelude::*;
#[derive(Select, Default)]
struct PartialComment {
body: String
}
#[tokio::main]
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(())
}
use rizzle::prelude::*;
#[tokio::main]
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(())
}
use rizzle::prelude::*;
#[tokio::main]
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(())
}