Skip to main content

toolu_orm_query/
lib.rs

1pub mod delete;
2pub mod error;
3pub mod insert;
4pub mod relational_builder;
5pub mod select;
6pub mod tuple_append;
7pub mod update;
8pub(crate) mod where_clause;
9
10use where_clause::cfg_single_backend;
11
12cfg_single_backend! {
13  pub mod executor;
14  pub(crate) mod exec_helpers;
15}
16
17#[cfg(all(
18  feature = "libsql",
19  not(feature = "rusqlite"),
20  not(feature = "postgres")
21))]
22pub mod transaction;
23
24pub use error::QueryError;