Skip to content

Latest commit

 

History

History
56 lines (42 loc) · 1.23 KB

File metadata and controls

56 lines (42 loc) · 1.23 KB

Gel Rust Binding for Tokio

Async client for the Gel database, using Tokio runtime.

Example Usage

#[tokio::main]
async fn main() -> anyhow::Result<()> {
    let conn = gel_tokio::create_client().await?;
    let val = conn.query_required_single::<i64, _>(
        "SELECT 7*8",
        &(),
    ).await?;
    println!("7*8 is: {}", val);
    Ok(())
}

Transaction Example

#[tokio::main]
async fn main() -> anyhow::Result<()> {
    let conn = gel_tokio::create_client().await?;
    let val = conn.transaction(|mut transaction| async move {
        transaction.query_required_single::<i64, _>(
            "SELECT (UPDATE Counter SET { value := .value + 1}).value LIMIT 1",
            &()
        ).await
    }).await?;
    println!("Counter: {val}");
    Ok(())
}

More examples on github

Version Support

Gel protocol version 0 support was removed in 0.11.x.

License

Licensed under either of

at your option.