//! Feature-gated type aliases for the active database pool and connection.
//!
//! Only one dialect feature may be active at a time (enforced by build.rs).
//! Code that imports `db::pool::Pool` compiles to the concrete sqlx type with zero overhead.
pub use PgRow as DbRow;
pub use PgConnection as Connection;
pub use PgPool as Pool;
pub type DbConnection = PoolConnection;
pub use MySqlRow as DbRow;
pub use MySqlConnection as Connection;
pub use MySqlPool as Pool;
pub type DbConnection = PoolConnection;
pub use SqliteRow as DbRow;
pub use SqliteConnection as Connection;
pub use SqlitePool as Pool;
pub type DbConnection = PoolConnection;