I'm using MSVC and the command LIB /DEF:sqlite3.def created a sqlite3.lib for me.
In my case the "LIB" program was not in my path so I had to find it. C:\Program Files\Microsoft Visual Studio\VC98\Bin For more info, look for the heading "MSVC and SQLite DLL" under the SQLite wiki topic HowToCompile. http://www.sqlite.org/cvstrac/wiki?p=HowToCompile Steve Bryant >>> [EMAIL PROTECTED] 6/8/2005 8:53:48 AM >>> Hello, I'd like to use the SQLite Library now for the first time, for my programs which should run under Linux and Windows. But I've got problems with the lib (I'm not very familar with .dll files). I downloaded the Precompared Binary for Windows. In my progam I included the sqlite3.h and I copied the sqlite3.dll into my project directory. But when I compile it, I got error message about unresolved links, e.g. sqlite3_open() I'm working normally with lib files, which I include with #pragma comment(lib, "file.lib"); into my C++ program. Can anyone help me? Thanks in advance :)