tiny_web/sys/dbs/
mod.rs

1/// Database adapter
2pub mod adapter;
3
4/// PostgreSQL database
5#[cfg(feature = "pgsql")]
6pub mod pgsql;
7
8/// Ms Sql Server database
9#[cfg(feature = "mssql")]
10pub mod mssql;
11
12#[cfg(not(any(feature = "pgsql", feature = "mssql")))]
13pub mod without_sql;
14
15#[cfg(not(any(feature = "pgsql", feature = "mssql")))]
16compile_error!("Either feature 'pgsql' or 'mssql' must be enabled for this crate.");