rogerbinns / apsw

Another Python SQLite wrapper
https://rogerbinns.github.io/apsw/
Other
739 stars 97 forks source link

Support checksum VFS #541

Closed rogerbinns closed 2 days ago

rogerbinns commented 2 weeks ago

https://www.sqlite.org/cksumvfs.html

rogerbinns commented 2 days ago

On further investigation it can't be used. It becomes the default VFS and is ideal where the VFS are static like with C code. It doesn't cope with VFS changing, and makes it backend VFS be whatever was default at time of its loading.

To make it more workable I'd need to do the following code changes to it:

Not going to bother.