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
Serialize a database into a bytes object. For an ordinary on-disk database file, the serialization is just a copy of the disk file. For an in-memory database or a “temp” database, the serialization is the same sequence of bytes which would be written to disk if that database were backed up to disk.
More details on the use case can be checked in the discord thread.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
This feature request comes from @pyro in our discord questions channel .
The feature is support serialize and deserialize of kuzu Database to a bytes object similar to what SQLite supports.
load: https://docs.python.org/3/library/sqlite3.html#sqlite3.Connection.deserialize
dump: https://docs.python.org/3/library/sqlite3.html#sqlite3.Connection.serialize
More details on the use case can be checked in the discord thread.
Beta Was this translation helpful? Give feedback.
All reactions