Deadpool for SQLite Latest Version

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.

Features

| Feature | Description | Extra dependencies | Default | | ------- | ----------- | ------------------ | ------- | | config | Enable support for config crate | config, serde/derive | yes |

Example

```rust use deadpool_sqlite::Config;

[tokio::main]

async fn main() { let mut cfg = Config::new("db.sqlite3"); let pool = cfg.createpool(); for i in 1..10 { let mut conn = pool.get().await.unwrap(); let value: i32 = conn.interact(move |conn| { let mut stmt = conn.preparecached("SELECT 1 + $1").unwrap(); stmt.queryrow([&i], |row| row.get(0)).unwrap() }).await; asserteq!(value, i + 1); } } ```

License

Licensed under either of

at your option.