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 mod sqlite_string;
9 pub(crate) use sqlite_string::SqliteMallocString;
10