This project is licensed under either Apache License, Version 2.0, zlib License, or MIT License, at your option.
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.6.0" ```
iodbc
: Sets odbc-api to use iodbc connection manager.
```rust norun use axumodbc::{ODBCConnectionManager, blocking}; use axum::{ Router, routing::get, }; use std::time::Duration;
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::with_state(manager)
.route("/drop", get(drop_table));
// 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 droptable(manager: ODBCConnectionManager) -> String { let mut connection = manager.aquire().await.unwrap(); let sleep = || tokio::time::sleep(Duration::frommillis(50));
let _ = connection.execute_polling("DROP TABLE IF EXISTS TEST", (), sleep).await.unwrap();
"compeleted".to_string()
} ```