sqlite function is not linked

Discussion of open issues, suggestions and bugs regarding UniDAC (Universal Data Access Components) for Delphi, C++Builder, Lazarus (and FPC)
Locked
devart001
Posts: 23
Joined: Wed 02 Apr 2014 09:13

sqlite function is not linked

Post by devart001 » Wed 09 Apr 2014 05:44

Uconn.Password :='devart';

error,bug:
sqlite function is not linked

AlexP
Devart Team
Posts: 5530
Joined: Tue 10 Aug 2010 11:35

Re: sqlite function is not linked

Post by AlexP » Wed 09 Apr 2014 08:59

Hello,

This error means that the library you are using doesn't support encryption. To solve the problem, you should use a library with encryption implemented. Or, if you develop Windows applications, you can use the Direct mode, in which encryption is already implemented.

devart001
Posts: 23
Joined: Wed 02 Apr 2014 09:13

Re: sqlite function is not linked

Post by devart001 » Wed 09 Apr 2014 09:09

Where to download encrypted dll.
Unidac controls how to join password?

AlexP
Devart Team
Posts: 5530
Joined: Tue 10 Aug 2010 11:35

Re: sqlite function is not linked

Post by AlexP » Wed 09 Apr 2014 10:10

A library with support for encryption - http://www.hwaci.com/sw/sqlite/see.html
To set a password, you should set

Code: Select all

UniConnection1.SpecificOptions.Values['EncryptionKey'] := 'passwd';

devart001
Posts: 23
Joined: Wed 02 Apr 2014 09:13

Re: sqlite function is not linked

Post by devart001 » Thu 10 Apr 2014 01:11

1.'Uconn.Password :='devart';' is what to do with it?
2.Please give a dll download address, and I did not find,
How to use it?


thanks.

AlexP
Devart Team
Posts: 5530
Joined: Tue 10 Aug 2010 11:35

Re: sqlite function is not linked

Post by AlexP » Thu 10 Apr 2014 10:17

1) UniConnection1.Password is not supported for SQLite.
2) http://www.hwaci.com/cgi-bin/see-step1

Locked