kitx 0.0.18

A lightweight wrapper for database operations based on sqlx, enabling fast CRUD operations.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub mod insert_builder;
pub mod update_builder;

#[cfg(feature = "sqlite")]
pub mod upsert_sqlite;

#[cfg(feature = "postgres")]
pub mod upsert_postgres;

#[cfg(feature = "mysql")]
pub mod upsert_mysql;

pub mod delete_builder;
pub mod select_builder;

pub mod subquery;