Library to Provide an ODBC-Api layer.
If you need help with this library or have suggestions please go to our Discord Group
Axum ODBC uses [tokio
] runtime.
```toml
[dependencies] axum_odbc = "0.3.1" ```
iodbc
: Sets odbc-api to use iodbc connection manager.
```rust norun use axumodbc::{OdbcManagerLayer, ODBCConnectionManager, blocking}; use axum::{ Router, routing::get, };
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()
} ```