Expand description
FrankenSQLite connection implementing sqlmodel_core::Connection.
Wraps fsqlite::Connection (which is !Send due to Rc<RefCell<>>) in
Arc<Mutex<>> to satisfy the Connection: Send + Sync requirement.
All operations execute synchronously under the mutex, matching the pattern
used by sqlmodel-sqlite for its FFI-based wrapper.
Structsยง
- Franken
Connection - A SQLite connection backed by FrankenSQLite (pure Rust).
- Franken
Transaction - A FrankenSQLite transaction.