5 releases

new 0.2.0 May 23, 2024
0.1.0 Nov 17, 2023
0.1.0-rc.4 Nov 2, 2023
0.1.0-rc.3 Mar 24, 2023
0.1.0-rc.2 May 9, 2022

#1363 in Database interfaces

Download history 921/week @ 2024-02-02 1031/week @ 2024-02-09 928/week @ 2024-02-16 1211/week @ 2024-02-23 1193/week @ 2024-03-01 936/week @ 2024-03-08 1075/week @ 2024-03-15 1179/week @ 2024-03-22 1236/week @ 2024-03-29 1161/week @ 2024-04-05 1499/week @ 2024-04-12 1940/week @ 2024-04-19 2074/week @ 2024-04-26 1403/week @ 2024-05-03 1488/week @ 2024-05-10 1410/week @ 2024-05-17

6,762 downloads per month
Used in 9 crates (7 directly)

MIT/Apache

1MB
14K SLoC

db_pools ci.svg crates.io docs.svg

Asynchronous database driver integration for Rocket. See the crate docs for full usage details.

Usage

  1. Add rocket_db_pools as a dependency with one or more database driver features enabled:

    [dependencies.rocket_db_pools]
    version = "0.2.0"
    features = ["sqlx_sqlite"]
    
  2. Choose a name for your database, here sqlite_logs. Configure at least a URL for the database:

    [default.databases.sqlite_logs]
    url = "/path/to/database.sqlite"
    
  3. 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:

    use rocket_db_pools::{Database, Connection};
    
    #[derive(Database)]
    #[database("sqlite_logs")]
    struct Logs(sqlx::SqlitePool);
    
    #[launch]
    fn rocket() -> _ {
        rocket::build().attach(Logs::init())
    }
    
  4. Use Connection<Type> as a request guard to retrieve an active database connection:

    #[get("/<id>")]
    async fn read(mut db: Connection<Logs>, id: i64) -> Result<Log> {
        sqlx::query!("SELECT content FROM logs WHERE id = ?", id)
            .fetch_one(&mut *db)
            .map_ok(|r| Log(r.content))
            .await
    }
    

Dependencies

~14–57MB
~1M SLoC