Hi, I am trying to incorporate SQLite into my current project. To get used to using it and to see how it works I am writing a seperate app to intitially build my database from a space delimited file. My problem is I am not sure how to get SQLite working in my program. Can I just use the DLL? If so how do I get it working in my program? I tried putting the source directory into my project directory and #including sqlite3.h and although it compiles that way it says all the commands such as sqlite3_open, sqlite3_exec, etc are undefined references. I am using Dev-C++.
Thanks