|
|
|
|
|
by rogerbinns
285 days ago
|
|
SQLite has a builtin session extension that can be used to record and replay groups of changes, with all the necessary handling. I don't necessarily recommend session as your solution, but it is at least a good idea to see how it compares to others. https://sqlite.org/sessionintro.html That provides a C level API. If you know Python and want to do some prototyping and exploration then you may find my SQLite wrapper useful as it supports the session extension. This is the example giving a feel for what it is like to use: https://rogerbinns.github.io/apsw/example-session.html |
|