burncloud-database-impl 0.1.0

Database implementations for multiple backends (PostgreSQL, MySQL, SQLite, MongoDB) for BurnCloud
Documentation
pub mod postgres;
pub mod mysql;
pub mod sqlite;
pub mod mongodb;
pub mod common;

pub use common::*;

#[cfg(feature = "postgres")]
pub use postgres::*;

#[cfg(feature = "mysql")]
pub use mysql::*;

#[cfg(feature = "sqlite")]
pub use sqlite::*;

#[cfg(feature = "mongodb_support")]
pub use mongodb::*;