4个版本
0.2.1 | 2024年2月20日 |
---|---|
0.2.0 | 2024年1月29日 |
0.1.1 | 2023年12月15日 |
0.1.0 | 2023年12月15日 |
2180 在 数据库接口
每月下载量 49
190KB
3.5K SLoC
r2d2-aykroyd
示例
postgres
客户端的示例。
use std::thread;
use postgres::NoTls;
use r2d2_aykroyd::postgres::AykroydConnectionManager;
#[derive(aykroyd::QueryOne)]
#[query(row(Row), text = "SELECT 1 + $1")]
struct AddOneTo(i32);
#[derive(aykroyd::FromRow)]
struct Row(i32);
fn main() {
let manager = AykroydConnectionManager::new(
"host=localhost user=postgres".parse().unwrap(),
NoTls,
);
let pool = r2d2::Pool::new(manager).unwrap();
for i in 0..10i32 {
let pool = pool.clone();
thread::spawn(move || {
let mut client = pool.get().unwrap();
let row = client.query_one(&AddOneTo(i)).unwrap();
let value = row.0;
assert_eq!(value, i + 1);
});
}
}
mysql
客户端的示例。
use std::thread;
use r2d2_aykroyd::mysql::AykroydConnectionManager;
#[derive(aykroyd::QueryOne)]
#[query(row(Row), text = "SELECT 1 + ?")]
struct AddOneTo(i32);
#[derive(aykroyd::FromRow)]
struct Row(i32);
fn main() {
let opts = mysqsl::Opts::from_url(
"mysql://user:password@locahost:3307/db_name",
);
let builder = mysql::OptsBuilder::from_opts(opts);
let manager = AykroydConnectionManager::new(builder);
let pool = r2d2::Pool::new(manager).unwrap();
for i in 0..10i32 {
let pool = pool.clone();
thread::spawn(move || {
let mut client = pool.get().unwrap();
let row = client.query_one(&AddOneTo(i)).unwrap();
let value = row.0;
assert_eq!(value, i + 1);
});
}
}
依赖项
~0.5–16MB
~227K SLoC