4个版本 (破坏性)
0.4.0 | 2024年4月7日 |
---|---|
0.3.0 | 2024年3月15日 |
0.2.0 | 2024年3月15日 |
0.1.0 | 2024年3月15日 |
#1425 在 数据库接口
被 2 crate 使用
41KB
656 行
miniorm
简介
miniorm
crate提供在sqlx
之上的一个非常简单的ORM
。
sqlx
已经提供了一个可以自动派生的FromRow
trait,可以将数据库中的行转换为对象。然而,没有相应的宏可以将对象转换回行以插入数据库。
这就是miniorm
发挥作用的地方。它提供了多个可以自动派生的特质。使用这些特质,miniorm
提供了一个构建在之上并包含所有标准"CRUD"操作Store
类型
- (C)创建
- (R)读取
- (U)更新
- (D)删除
目前,miniorm
支持三个最常见的数据库后端
- Sqlite
- MySql
- Postgres
每个后端都应该通过相应的功能标志启用。
示例
use sqlx::FromRow;
use miniorm::prelude::*;
#[derive(Debug, Clone, Eq, PartialEq, FromRow, Entity)]
struct Todo {
#[column(TEXT NOT NULL)]
description: String,
#[column(BOOLEAN NOT NULL DEFAULT false)]
done: bool,
}
#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
let db = sqlx::SqlitePool::connect(":memory:").await?;
let store = miniorm::Store::new(db);
let todo = Todo {
description: "checkout miniorm".into(),
done: false,
};
store.recreate_table().await?;
println!("Inserting...");
let todo = store.create(todo).await?;
println!("Retrieveing by id...");
let mut fetched = store.read(todo.id()).await?;
assert_eq!(todo, fetched);
println!("Updating by id...");
fetched.done = true;
let after_update = store.update(fetched).await?;
assert_eq!(after_update.id(), todo.id());
println!("Listing all...");
let all = store.list().await?;
assert_eq!(all.len(), 1);
assert_eq!(&after_update, &all[0]);
println!("Deleting by id...");
store.delete(todo.id()).await?;
println!("Checking delete successful");
assert!(matches!(
store.read(todo.id()).await,
Err(sqlx::Error::RowNotFound)
));
Ok(())
}
此示例需要sqlite和 |
等等,还有更多!
可以将Store
转换为Router
,该路由器可以安装在REST API上以提供这些CRUD操作。为此,您的实体类型应实现从serde
派生的Serialize
和Deserialize
。
这需要axum
功能标志。
use axum::Router;
use miniorm::prelude::*;
use serde::{Deserialize, Serialize};
use sqlx::{FromRow, SqlitePool};
use std::net::SocketAddr;
use tokio::net::TcpListener;
#[derive(Debug, Clone, Eq, PartialEq, FromRow, Entity, Serialize, Deserialize)]
struct Todo {
#[column(TEXT NOT NULL)]
description: String,
#[column(BOOLEAN NOT NULL DEFAULT false)]
done: bool,
}
impl Todo {
pub fn new(description: impl AsRef<str>) -> Self {
let description = description.as_ref().to_string();
let done = false;
Todo { description, done }
}
}
#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
// connect to db
let db = sqlx::SqlitePool::connect(":memory:").await?;
// initialize todo store
let todos = Store::new(db);
todos.recreate_table().await?;
todos.create(Todo::new("do the laundry")).await?;
todos.create(Todo::new("wash the dishes")).await?;
todos.create(Todo::new("go walk the dog")).await?;
todos.create(Todo::new("groceries")).await?;
// create the app
let app = Router::new().nest("/todos", todos.into_axum_router());
let addr = SocketAddr::from(([127, 0, 0, 1], 3000));
println!("listening on http://{}", addr);
// serve the app
let listener = TcpListener::bind(&addr).await.unwrap();
axum::serve(listener, app).await?;
Ok(())
}
此示例需要sqlite和axum功能标志。 |
依赖关系
~8–24MB
~382K SLoC