I want to use this on pocketbase and I am creating it using VFS and Adiantum. Can I manually open this database in any database browser, such as DBeaver? |
Answered by
ncruces
Apr 28, 2025
Replies: 1 comment 1 reply
|
Short answer is no. You'd need whatever database browser you want to use to use this (ncruces) driver with the Adiantum VFS installed. Long answer is it should be possible to port the VFS and make an SQLite runtime loadable extension for it; then you might be able to use that from other apps. Porting the encryption code from Go to C would be moderately challenging, using |
1 reply
Answer selected by
tatar6607
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Short answer is no. You'd need whatever database browser you want to use to use this (ncruces) driver with the Adiantum VFS installed.
Long answer is it should be possible to port the VFS and make an SQLite runtime loadable extension for it; then you might be able to use that from other apps.
Porting the encryption code from Go to C would be moderately challenging, using
github.com/psanford/sqlite3vfsand just adapting the Go code might be easier.