vantage-sql 0.4.5

Vantage extension for SQL databases (Postgres, MySQL, SQLite)
Documentation
1
2
3
4
5
6
7
8
9
10
pub mod delete;
pub mod insert;
pub mod primitives;
pub mod select;
pub mod update;

pub use delete::MysqlDelete;
pub use insert::MysqlInsert;
pub use select::MysqlSelect;
pub use update::MysqlUpdate;