1 个不稳定版本
0.1.0 | 2022年12月18日 |
---|
#2692 在 数据库接口
6KB
56 行
Sqlx Meta
作为sqlx-crud的精简版派生的库,用于提供标注实体的元数据,设计目的是仅提供构建你自己的查询的构建块。
入门
将其添加到依赖项中
sqlx-meta = "0.1.0"
并用 SqlxMeta
标注你的实体
#[derive(Default, Debug, Clone, sqlx::FromRow, SqlxMeta)]
pub struct File {
pub id: Option<i32>,
pub entry_time: String,
pub abs_path: String,
pub path: String,
pub ext: Option<String>,
pub mode: Option<String>,
// ..
}
构建自己的查询(当实际不变化时,建议使用 lazy_static
)
lazy_static! {
static ref INSERT_SQL: String = {
let cols = &File::columns()[1..];
let holders = (0..cols.len()).map(|_| "?").collect::<Vec<_>>().join(", ");
let excludes = cols
.iter()
.map(|c| format!("'{}'=excluded.'{}'", c, c))
.collect::<Vec<_>>()
.join(",");
// ..
// ..
使用 update_binds
或 insert_binds
方法来节省输入
use sqlx_meta::{Binds, Schema};
f.update_binds(q).fetch_optional(&mut conn).await?;
依赖项
~10MB
~203K SLoC