rorm-db 0.11.0

The inner database abstraction layer from rorm.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#[cfg(all(
    not(feature = "postgres"),
    not(feature = "mysql"),
    not(feature = "sqlite")
))]
compile_error!("Can't compile with sqlx without any database");

pub(crate) mod any;
pub(crate) mod database;
pub(crate) mod executor;
pub(crate) mod row;
pub(crate) mod transaction;
pub(crate) mod utils;