-
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Yes, you can't If you want to use a SQLite shell with encryption support, you have to build it yourself by compiling the SQLite shell source code and linking it to the SQLite3 Multiple Ciphers library.
After the above step you have a SQLite shell with encryption support.
As you can see the SQLite shell that was built in the previous step displays a message that it is based on SQLite3 Multiple Ciphers. That is, you are ready to create encrypted databases and work with them using this shell.
Again, you can't Just apply the necessary |
Beta Was this translation helpful? Give feedback.
Yes, you can't
.load
SQLite3 Multiple Ciphers, because it is not a loadable SQLite extension. It is a replacement for the SQLite library with added encryption support.If you want to use a SQLite shell with encryption support, you have to build it yourself by compiling the SQLite shell source code and linking it to the SQLite3 Multiple Ciphers library.