kurtbuilds_sql 0.26.1

Structs representing sql queries, enabling query building, migrations, and more
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
mod alter_table;
mod create_schema;
mod cte;
mod delete;
mod drop_table;
mod insert;
mod select;
mod union;
mod update;

pub use insert::*;
pub use select::*;
pub use update::*;
pub use alter_table::*;
pub use create_schema::*;
pub use cte::*;
pub use drop_table::*;
pub use union::*;