Page 1 of 1
Cannot load client DLL: sqlite3.dll
Posted: Wed 12 May 2010 02:38
by norfintork
Using D2010
UniDAC 3.00.0.7
Fails in IDE, but app runs.
DB, DLL and exe in same directory.
Looks like this was a problem in the past, did a recent update break it?
Posted: Wed 12 May 2010 12:17
by bork
Hello
The problem is the current folder for application in the design-time and in the run-time is different. In the design-time the current folder is the folder where Delphi EXE is located. In the run-time the current folder is the folder where the application EXE file is located. You can move your sqlite3.dll to the windows\system32 folder and it will be available in the design-time and in the run-time. Or you can add the path to sqlite3.dll to your "Path" environment variable.
Posted: Thu 13 May 2010 05:59
by norfintork
That did it - thanks!