sql-middleware 0.7.0

Lightweight async wrappers for tokio-postgres, rusqlite, turso, and tiberius.
Documentation
1
2
3
4
5
6
7
8
9
10
mod dispatch;
mod targets;

pub use dispatch::{execute_batch, query};
pub(crate) use dispatch::{
    execute_dml_dispatch, execute_dml_prepared_dispatch, execute_select_dispatch,
    execute_select_prepared_dispatch,
};
pub(crate) use targets::QueryTargetKind;
pub use targets::{BatchTarget, QueryTarget};