drizzle_types/sqlite/mod.rs
1//! SQLite type definitions
2//!
3//! This module provides type definitions for SQLite including:
4//!
5//! - [`SQLiteType`] - SQLite column storage types
6//! - [`TypeCategory`] - Rust type classification for SQLite mapping
7//! - [`SQLTypeCategory`] - SQL type affinity categories for parsing
8
9pub mod ddl;
10mod sql_type;
11mod type_category;
12
13pub use sql_type::SQLiteType;
14pub use type_category::{SQLTypeCategory, TypeCategory};