arel 0.0.5

simulate rails arel
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub mod methods;
pub mod traits;
pub mod collectors;
pub mod nodes;
pub mod statements;
pub mod table;
pub mod visitors;

pub use nodes::{SqlLiteral};

pub fn sql(sql_raw: &str) -> SqlLiteral {
    SqlLiteral::new(sql_raw.to_string())
}
pub use traits::ArelAble;