Library name bug?

Forum related to SQLite

Moderators: gto, cipto_kh, EgonHugeist

Post Reply
iar
Fresh Boarder
Fresh Boarder
Posts: 4
Joined: 13.10.2006, 17:14
Location: SPb
Contact:

Library name bug?

Post by iar »

Hello!

I'm use Lazarus on Debian linux, and install both sqlite2 and sqlite3 libraries.

File libsqlite.so is symlink to libsqlite.so.0.8.6 , i.e. to sqlite lib version 2

In zeos source src/plain/ZPlainSqLite3.pas on line 16 may be instead

Code: Select all

  LINUX_DLL_LOCATION = 'libsqlite.so';
must be

Code: Select all

  LINUX_DLL_LOCATION = 'libsqlite3.so';
?
aducom
Zeos Dev Team
Zeos Dev Team
Posts: 67
Joined: 30.08.2005, 13:21

Post by aducom »

I don't have much knowledge about Linux implementation, but useually the names of the dll's are fixed and you need to rename the dll's (or so's) themself for access. I.e. MySQL is delivering MySQL.dll which need to be renamed to MySQL40.dll, MySQL41.dll etc. This is also the case for SQLite.
Post Reply