1 个不稳定版本
0.1.0 | 2022 年 8 月 6 日 |
---|
#1318 in 过程宏
11KB
102 行
sqlx-derive-with
为特定数据库生成 sqlx::FromRow
特定类型。
sqlx-derive-with 支持 decode
属性,使用自定义解码函数对特定列进行解码。此功能不受上游 sqlx::FromRow
支持。
用法
use sqlx::Connection as _;
#[derive(sqlx_derive_with::FromRow)]
#[sqlx_with(db = "sqlx::Sqlite")]
struct Row {
#[sqlx_with(decode = "split_x")]
x: (i64, i64),
y: String,
}
fn split_x(index: &str, row: &sqlx::sqlite::SqliteRow) -> sqlx::Result<(i64, i64)> {
use sqlx::Row as _;
let n: i64 = row.try_get(index)?;
Ok((n, n + 2))
}
#[tokio::main]
async fn main() {
let mut conn = sqlx::SqliteConnection::connect(":memory:").await.unwrap();
let row: Row = sqlx::query_as("select 10 as x, 'hello' as y")
.fetch_one(&mut conn)
.await
.unwrap();
assert_eq!(row.x, (10, 12));
assert_eq!(row.y, "hello");
}
依赖项
~2MB
~42K SLoC