1 // Internal utilities 2 pub(crate) mod param_cache; 3 mod small_cstr; 4 pub(crate) use param_cache::ParamIndexCache; 5 pub(crate) use small_cstr::SmallCString; 6 7 // Doesn't use any modern features or vtab stuff, but is only used by them. 8 #[cfg(any(feature = "modern_sqlite", feature = "vtab"))] 9 mod sqlite_string; 10 #[cfg(any(feature = "modern_sqlite", feature = "vtab"))] 11 pub(crate) use sqlite_string::SqliteMallocString; 12