Deadpool is a dead simple async pool for connections and objects of any type.
This crate implements a deadpool
manager for rusqlite
and provides a wrapper that ensures correct use of the connection
inside a separate thread.
| Feature | Description | Extra dependencies | Default |
| ------- | ----------- | ------------------ | ------- |
| rt_tokio_1
| Enable support for tokio crate | deadpool/rt_tokio_1
| yes |
| rt_async-std_1
| Enable support for async-std crate | deadpool/rt_async-std_1
| no |
| serde
| Enable support for serde crate | deadpool/serde
, serde/derive
| no |
```rust use deadpool_sqlite::{Config, Runtime};
async fn main() { let mut cfg = Config::new("db.sqlite3"); let pool = cfg.createpool(Runtime::Tokio1).unwrap(); let conn = pool.get().await.unwrap(); let result: i64 = conn .interact(|conn| { let mut stmt = conn.prepare("SELECT 1")?; let mut rows = stmt.query([])?; let row = rows.next()?.unwrap(); row.get(0) }) .await .unwrap(); asserteq!(result, 1); } ```
Licensed under either of
at your option.