sql-middleware 0.9.0

Lightweight async wrappers for tokio-postgres, rusqlite, turso, and tiberius.
Documentation
1
2
3
4
5
6
7
8
9
10
11
mod core;
mod dml;
mod prepared;
mod select;
mod tx;

pub(crate) use core::run_blocking;
pub use core::{SqliteConnection, apply_wal_pragmas};
pub use dml::{dml, dml_with_cache_mode};
pub use select::{select, select_with_cache_mode};
pub(crate) use tx::{rollback_with_busy_retries, rollback_with_busy_retries_blocking};