Expand description
SQLite persistence adapter (feature = "sqlite").
Use sqlite::open_default_in_memory or sqlite::open_default to open an engine.
Structs§
- Sqlite
Pending Store - SQLite-backed
PendingAdjudicationPortimplementation. - Sqlite
Persistence Store - The SQLite-backed implementation of
PersistencePort.
Enums§
- Sqlite
Store Error - Error type for all
mempill-sqliteoperations.
Functions§
- open_
default - Open a file-backed
DefaultEngineat the given path. - open_
default_ in_ memory - Open an in-memory
DefaultEngine. - open_
with_ oracle - Open a file-backed SQLite engine wired with a real oracle.
- open_
with_ oracle_ in_ memory - Open an in-memory SQLite engine wired with a real oracle.
Type Aliases§
- Default
Engine - The default concrete engine type: SQLite persistence, no oracle, no vector.
- Oracle
Engine - An
EngineHandlebacked by SQLite persistence, a caller-supplied oracle, and no vector.