Skip to main content

Module connection

Module connection 

Source
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ยง

FrankenConnection
A SQLite connection backed by FrankenSQLite (pure Rust).
FrankenTransaction
A FrankenSQLite transaction.