> > You need to link against the SQLite library: > > $ gcc pippo.c -o pippo -lsqlite > > Nothing the result is the same ..
Your library is probably named sqlite3.so or sqlite-3.0.7.so or something like that. You have to give gcc the right name. Also, you have to put the library is a directory where the linker can find it, and you may need to run ldconfig after you install the library. These things apply to any shared library, not just to sqlite. Regards

