sea-query 1.0.0

🔱 A dynamic query builder for MySQL, Postgres and SQLite
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Identifier types.

// Intentionally not `pub`, so that we're free to experiment with the internal structure.
mod compound;
mod core;
mod qualification;
mod quote;
#[cfg(test)]
mod tests;

pub use compound::*;
pub use core::*;
pub use qualification::*;
pub use quote::*;