sql_query_builder 2.6.2

Write SQL queries in a simple and composable way
Documentation
1
2
3
4
5
6
7
8
use crate::concat::Concat;

/// Represents all commands that can be used in a transaction
pub trait TransactionQuery: Concat {}

/// Represents all commands that can be used inside the with method
#[cfg(any(feature = "postgresql", feature = "sqlite", feature = "mysql"))]
pub trait WithQuery: Concat {}