datalocker 0.3.1

My first Rust crate I made to learn. Basic Database Interface. Currently works with mySQL only. Uses the mysql crate and provides a wrapper around it to make interacting with a mysql database easier.
Documentation
1
2
3
4
5
6
#[macro_export]
macro_rules! query_primary_key {
    () => {
        "int not null PRIMARY KEY AUTO_INCREMENT"
    };
}