sql 0.4.3

The package provides a constructor of SQL statements.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Statements.

mod create_table;
mod delete;
mod insert;
mod select;

pub use self::create_table::CreateTable;
pub use self::delete::Delete;
pub use self::insert::Insert;
pub use self::select::Select;