db_pools
![ci.svg] ![crates.io] ![docs.svg]Asynchronous database driver integration for Rocket. See the [crate docs] for full usage details.
Add rocket_db_pools
as a dependency with one or more [database driver
features] enabled:
toml
[dependencies.rocket_db_pools]
version = "0.1.0-rc.2"
features = ["sqlx_sqlite"]
Choose a name for your database, here sqlite_logs
. [Configure] at least a
URL for the database:
toml
[default.databases.sqlite_logs]
url = "/path/to/database.sqlite"
[Derive Database
] for a unit type (Logs
here) which
wraps the selected driver's [Pool
] type and is decorated with
#[database("name")]
. Attach Type::init()
to your application's Rocket
to initialize the database pool:
```rust use rocketdbpools::{Database, Connection};
struct Logs(sqlx::SqlitePool);
fn rocket() -> _ { rocket::build().attach(Logs::init()) } ```
Use [Connection<Type>
] as a request guard to retrieve an
active database connection:
```rust
async fn read(mut db: Connection