Mahendra Batra said: > Someone, plz tell me how could i embed SQLite. I included sqlite.h but > getting unresolved errors i.e the definition of functions like > sqlite3_open(......) and sqlite3_exec(......) can not be found. > Please favor me as soon as possible.
In general the actual error message thrown by your compiler is the most helpful piece of information. On a wild guess you're not linking to the SQLite library. You'll need to import the dll to make your link library (not sure of the tool in VC++, possibly implib). Then link to that library and you should have your dependencies resolved. If your problem is more that the program just won't compile, you need to make usre that the sqlite3.h file is in the include path. Clay -- Lazarus Notes from Lazarus Internet Development http://www.lazarusid.com/notes/ Articles, Reviews and Commentary on web development