2 个不稳定版本
新增 0.25.0 | 2024 年 8 月 22 日 |
---|---|
0.24.0 | 2024 年 6 月 7 日 |
在 数据库接口 中排名 1909
每月下载量 2,331
在 23 个 Crates 中使用 (通过 holochain_sqlite)
9KB
102 行
r2d2-sqlite
基于 Steven Fackler 的 r2d2-postgres 开发的 r2d2 连接池的 sqlite 实现。
lib.rs
:
为 r2d2 连接池提供 sqlite 支持。
库 Crates: r2d2-sqlite
示例
extern crate r2d2;
extern crate r2d2_sqlite;
extern crate rusqlite;
use std::thread;
use r2d2_sqlite::SqliteConnectionManager;
use rusqlite::params;
fn main() {
let manager = SqliteConnectionManager::file("file.db");
let pool = r2d2::Pool::new(manager).unwrap();
pool.get()
.unwrap()
.execute("CREATE TABLE IF NOT EXISTS foo (bar INTEGER)", params![])
.unwrap();
(0..10)
.map(|i| {
let pool = pool.clone();
thread::spawn(move || {
let conn = pool.get().unwrap();
conn.execute("INSERT INTO foo (bar) VALUES (?)", &[&i])
.unwrap();
})
})
.collect::<Vec<_>>()
.into_iter()
.map(thread::JoinHandle::join)
.collect::<Result<_, _>>()
.unwrap()
}
依赖项
~28MB
~454K SLoC