//! SQL Server backend glue (mirrors the layout used by the other backends).
//!
//! Submodules:
//! - `config`: connection configuration and pool setup (builder pattern)
//! - `params`: parameter conversion between middleware and SQL Server types
//! - `query`: result extraction, building, and query binding
//! - `executor`: database operation execution
//! - `client`: raw client creation utilities
// Re-export the public API
pub use create_mssql_client;
pub use ;
pub use ;
pub use Params;
pub use MssqlNonTxPreparedStatement;
pub use build_result_set;
pub use ;