SQLiteDatabase.Decrypt

From Xojo Documentation

Method

SQLiteDatabase.Decrypt()

Supported for all project types and targets.

Decrypts an encrypted database. You must be connected to the database in order to decrypt it.

Example

This example decrypts an encrypted database:

Var db As New SQLiteDatabase
db.DatabaseFile = FolderItem.ShowOpenFileDialog("db.sqlite")
db.EncryptionKey = "howdy+doody"
Try
db.Connect Then
db.Decrypt
Catch error As DatabaseException
// handle error here
End Try