You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Are there any plans to provide functionality to dump/load the SQLite database to/from raw memory buffers? I've seen #709 but I think that issue is obsolete.
This would enable the user to work solely on in-memory database and make backups.
Proposed implementation
I have implemented the experimental methods db.dump() and db.load() which map to the SQLite equivalent sqlite3_serialize() and sqlite3_deserialize() at my fork. It is not 100% complete and does not contain tests.
The text was updated successfully, but these errors were encountered:
Summary
Are there any plans to provide functionality to dump/load the SQLite database to/from raw memory buffers? I've seen #709 but I think that issue is obsolete.
This would enable the user to work solely on in-memory database and make backups.
Proposed implementation
I have implemented the experimental methods
db.dump()
anddb.load()
which map to the SQLite equivalentsqlite3_serialize()
andsqlite3_deserialize()
at my fork. It is not 100% complete and does not contain tests.The text was updated successfully, but these errors were encountered: