I have a DB encrypted with this library along with the decryption key.
Can I use this library with UniDac and if so how do I go about it?
Thanks
SQLCipher encryption
Re: SQLCipher encryption
See the properties listed under TUniConnection.SpecificOptions (for SQLite Provider). There you would find options for database encryption.
Re: SQLCipher encryption
Hello,
To work with third-party libraries, you should specify the path to the library in the UniConnection.SpecificOptions.Values['ClientLibrary'] option:
More details about the Database File Encryption can be found in the documentation: http://www.devart.com/unidac/docs/datab ... yption.htm .
To work with third-party libraries, you should specify the path to the library in the UniConnection.SpecificOptions.Values['ClientLibrary'] option:
Code: Select all
UniConnection.SpecificOptions.Values['ClientLibrary'] := 'SQLite3.dll';