I have an application working on
Delphi XE (32 bits)
Sqlite (Unidac)
Windows 7 32
I have Delphi XE2, Unidac 4 and Windows 7-64
I have the 64 bits SQlite binaries, i I have compiled my source code, but when i try to open my database it seems my application try to open the 32 bits dll.
is there a trick or uncoomented tip? thanks and best regards
This is my code, the commented line works fine with win32 sqlite dll
Code: Select all
DM.Conexion.ProviderName := 'SQLITE';
// DM.Conexion.Server := GetCurrentDir + '\sqlite3.dll';
DM.Conexion.Server := GetCurrentDir + '\System.Data.SQLite.dll';
DM.Conexion.Database := GetCurrentDir + '\data\db.sqlite';
thanks and best regards