Page 1 of 1

SQLCipher encryption

Posted: Sun 11 Jan 2015 13:06
by sandy771
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

Re: SQLCipher encryption

Posted: Sun 11 Jan 2015 15:14
by stevel
See the properties listed under TUniConnection.SpecificOptions (for SQLite Provider). There you would find options for database encryption.

Re: SQLCipher encryption

Posted: Mon 12 Jan 2015 06:31
by AlexP
Hello,

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';
More details about the Database File Encryption can be found in the documentation: http://www.devart.com/unidac/docs/datab ... yption.htm .