Encrypt SQLite3 database

Feel free to talk about non programming issues here.
Post Reply
User avatar
gambafeliz
Posts: 139
Joined: Friday 2nd September 2022 7:50pm
Location: I live in the same city as Picasso

Encrypt SQLite3 database

Post by gambafeliz »

I need to encrypt a SQLite3 database, and access as well as do a complete maintenance, later with Gambas3.

Please, can someone tell me how I can do it? Have I indicated which is the best way, as well as the most correct way to do it, complying with the SQLite3 rules?

Thank you

More:

I use to connect, something like this:

Code: Select all

   Dim sConexion As String = "Connection1"
   Connections[sConexion].host = sDB
   Connections[sConexion].Name = sDBName
   Conn = Connections[sConexion]
I just found this, but I don't know how to interpret it:
https://sqlite.org/com/see.html The SQLite Encryption Extension (SEE)
For your misfortunes I am Spanish and I only know Spanish, please, be patient with me, Thank you. :)
Post Reply