AxumODBC

Library to Provide an ODBC-Api layer.

https://crates.io/crates/axum<em>axum</em>odbc Docs

Help

If you need help with this library or have suggestions please go to our Discord Group

Install

Axum ODBC uses [tokio] runtime.

```toml

Cargo.toml

[dependencies] axum_odbc = "0.3.0" ```

Cargo Feature Flags

iodbc: Sets odbc-api to use iodbc connection manager.

Example

```rust norun use axumodbc::{OdbcManagerLayer, ODBCConnectionManager, blocking}; use axum::{ Router, routing::get, };

[tokio::main]

async fn main() {

let manager = ODBCConnectionManager::new("Driver={ODBC Driver 17 for SQL Server};Server=localhost;UID=SA;PWD=My@Test@Password1;", 5);

// build our application with some routes
let app = Router::new()
    .route("/drop", get(drop_table))
    .layer(OdbcManagerLayer::new(manager));

// run it
let addr = SocketAddr::from(([127, 0, 0, 1], 3000));
tracing::debug!("listening on {}", addr);
axum::Server::bind(&addr)
    .serve(app.into_make_service())
    .await
    .unwrap();

}

async fn drop_table(manager: ODBCConnectionManager) -> String { let mut connection = manager.aquire().await.unwrap();

let _ = blocking!(connection.execute("DROP TABLE IF EXISTS TEST", ())).unwrap();

"compeleted".to_string()

} ```