Sorry to ask such a newb question but shouldn't I have to use a uname and pwd to acces the sqlite db, if not, how should I protect it ?

Leander
----- Original Message ----- From: "Thomas Briggs" <[EMAIL PROTECTED]>
To: <sqlite-users@sqlite.org>
Sent: Thursday, May 05, 2005 12:12 PM
Subject: RE: [sqlite] Error while loading shared libraries: libsqlite.so.0




In this shared directory I have the files:
libsqlite.a,
libsqlite.lai,
libsqlite.so.0.8.6,
sqlite,
teste (my program)

I think my problem is with the library "libsqlite.so.0" that
I don't have and I don't find it ....

As I believe an earlier poster pointed out, all you need to do is symlink libsqlite.so.0.8.6 to libsqlite.so.0 by doing:

  ln -s libsqlite.so.0.8.6 libsqlite.so.0

  If you look in your /lib or /usr/lib directories you'll see that most
shared libs are named libXXX.so.Major.Minor.Revision and then symlinks
are used to make files named libXXX.so.Major.Minor and libXXX.so.Major
available.  In this way, you can have different versions of a library
installed and available but still have programs that look only for
libXXX.so.Major function correctly.

  -Tom



--
No virus found in this incoming message.
Checked by AVG Anti-Virus.
Version: 7.0.308 / Virus Database: 266.11.5 - Release Date: 5/4/2005




Reply via email to