https://github.com/juliaaplavin/sqlcipher.jl
https://github.com/juliaaplavin/sqlcipher.jl
sqlcipher sqlite
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/juliaaplavin/sqlcipher.jl
- Owner: JuliaAPlavin
- License: other
- Created: 2024-02-18T17:59:07.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2024-07-30T21:15:46.000Z (over 1 year ago)
- Last Synced: 2025-01-20T06:45:53.831Z (about 1 year ago)
- Topics: sqlcipher, sqlite
- Language: Julia
- Homepage:
- Size: 11.4 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# SQLCipher
Drop-in replacement for [SQLite.jl](https://github.com/JuliaDatabases/SQLite.jl), but uses [SQLCipher](https://github.com/sqlcipher/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
```julia
SQLite.execute(db, """PRAGMA key="" """)
```
after opening the database.