easy-sqlite 0.4.1

Little sqlite framework
Documentation
pub mod entities;
mod impls;
#[cfg(test)]
mod tests;
pub mod traits;
mod utils;

pub use entities::errors;
pub use entities::types::{SStr, SVec};
#[cfg(feature = "async")]
pub use impls::async_connection::AMSQLConnection;
pub use impls::mutex_connection::MSQLConnection;
pub use impls::rc_connection::RSQLConnection;
pub use impls::table_manager::TableManager;
#[cfg(feature = "async")]
pub use traits::repo::{IAsyncConnection, IAsyncExecutor};
pub use traits::repo::{IConnection, IDbRepo, IExecutor, INewDbRepo};
pub use traits::table::ITable;
pub use utils::{deescape, escape};