sqly 0.5.0

A lightweight macro system on top of sqlx
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![allow(unused)]

/*

This section introduces DELETE, INSERT and UPDATE queries,
SELECT is more involved and will be covered in c2_select,
more complicated attributes and use cases follow after.

*/

mod c11_derive_delete;
mod c12_derive_insert;
mod c13_derive_update;
mod c14_rename_column;
mod c15_bind_argument;
mod c16_override_type;