I had a terrible time finding out how to get sqlite working with VC++ using the windows binaries from the sqlite download page. Most of the trouble was from me being a complete newb to VC++ but in the end I got it working. Here are the steps to follow along for next time.
- Download the precompiled binaries for Windows and also download the source code.
- The DLL download should contain the following files: sqlite3.dll and sqlite3.def
- The source code should contain lots of c code and header files, you need to find the sqlite3.h header file.
- Put sqlite3.dll, sqlite3.def, and sqlite3.h files into a directory somewhere.
- Next you need to create a sqlite3.lib file in order to implicitly link the dll to your project
- From the command line, navigate to the folder that has the sqlite3 files from step 4, then type the following:
- LIB /DEF:sqlite3.def
- This should create two more files: sqlite3.lib and sqlite3.exp
- NOTE: LIB.exe needs to be on your path and can be found it in the Visual Studio install directory (do a search).
- Now start a new console application project in Visual Studio
- Copy the sqlite3.dll, sqlite3.lib, and sqlite3.h files into your new project directory
- Right click on the Resource Files folder and choose Add >> Existing Item … then choose sqlite3.lib
- You may get a dialog that asks you about the custom rule, I just chose no.
- Now add the sqlite3.h file into your project headers directory in Visual Studio (project >> Add >> Existing item)
- Now you should be able to start using sqlite3: Here is a sample console app you can try.
- This will create a new db and a sample table and spit out a resultset to the console.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
|