arel 0.0.0

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

pub use nodes::{SqlLiteral};

pub fn sql(sql_raw: &str) -> SqlLiteral {
    SqlLiteral::new(sql_raw)
}