liteql 0.1.2

LiteQL is a lightweight wrapper for Rusqlite and Eloquent, designed to make working with SQLite in Rust easier and more intuitive.
Documentation
1
2
3
4
5
6
mod query;
mod execute;
pub use eloquent::Eloquent;
pub use rusqlite::{Connection, Error, Row};
pub use query::{Query, FromRow};
pub use execute::Execute;