| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Add support for sqlite3_serialize() and sqlite3_deserialize() which allow serializing an in-memory database to a binary string and restoring it later. These methods are useful for: - Creating snapshots of in-memory databases - Transferring database contents between connections - Backing up and restoring database state The methods are only available when SQLite is compiled without SQLITE_OMIT_DESERIALIZE (requires SQLite >= 3.23.0).
|
@Maaarcocr The test suite failure seems legit. Let me know if you need assistance getting unblocked! |
Sorry, something went wrong.
sorry for the delay, getting to this only now. the issue I have is that I can't currently replicate. I run the test with no issues on my machine. could it be an OS issue? or a sqlite version issue? |
Sorry, something went wrong.
| Back | FazBrowse Home | New Git URL |
Add support for sqlite3_serialize() and sqlite3_deserialize() which
allow serializing an in-memory database to a binary string and
restoring it later.
These methods are useful for:
The methods are only available when SQLite is compiled without
SQLITE_OMIT_DESERIALIZE (requires SQLite >= 3.23.0).