scooby 0.5.0

An SQL query builder with a pleasant fluent API closely imitating actual SQL
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Bits that are usable in different types of statements

mod alias;
mod column;
mod column_value;
mod expression;
mod with;

pub use alias::{Alias, Aliasable};
pub use column::Column;
pub use column_value::ColumnValuePair;
pub use expression::Expression;
pub use with::{with, WithClause, WithQuery, WithQueryBuilder};

pub type SortExpression = String;
pub type Condition = String;
pub type OutputExpression = String;
pub type TableName = String;