cf-modkit-db 0.7.2

ModKit database library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! SQLite-specific helpers and utilities.
//!
//! This module contains SQLite-specific functionality including:
//! - DSN parsing and cleaning
//! - PRAGMA parameter handling with typed enums
//! - Path preparation for `SQLite` databases

pub mod dsn;
pub mod path;
pub mod pragmas;

pub use dsn::{extract_sqlite_pragmas, is_memory_dsn};
pub use path::prepare_sqlite_path;
pub use pragmas::Pragmas;