1 2 3 4 5 6 7 8 9 10 11 12 13 14
//! Typestate MSSQL connection wrappers. //! //! Provides `MssqlTypedConnection<Idle>` / `MssqlTypedConnection<InTx>` using an owned //! pooled Tiberius client. mod core; mod dml; mod select; mod tx; pub use core::{Idle, InTx, MssqlManager, MssqlTypedConnection}; pub use dml::dml; pub use select::select; pub use tx::set_skip_drop_rollback_for_tests;