drizzle_sqlite/traits/
mod.rs

1//! SQLite-specific traits for tables, columns, and values
2
3mod column;
4mod table;
5mod value;
6
7pub use column::*;
8pub use table::*;
9pub use value::*;
10
11use crate::values::SQLiteValue;
12
13/// Type alias for SQL fragments with SQLite values.
14pub type SQLiteSQL<'a> = drizzle_core::SQL<'a, SQLiteValue<'a>>;
15
16// Use `drizzle_core::ToSQL<'a, SQLiteValue<'a>>` directly for bounds.