Drop-in replacement for SQLite.jl, but uses SQLCipher instead of plain SQLite. This is a fork of SQLite.jl
, keeping the same underlying code and package versions.
See SQLite.jl
docs for the interface and usage information, and SQLCipher docs for details on encryption features.
Briefly, encryption is enabled by running
SQLite.execute(db, """PRAGMA key="<your password>" """)
after opening the database.