Aaron Jones wrote:
there is no dll file in the sqlite source
Aaron,
To use SQLite on Windows you need to download 3 separate files.
http://www.sqlite.org/sqlite-3_3_5.zip contains a command line shell
statically linked to the sqlite library. You can use it to create, open,
test sqlite databases, or to try out SQL statements etc.
http://www.sqlite.org/sqlitedll-3_3_5.zip contains a precompiled DLL
that you can use to dynamically link the sqlite library to your
application. This DLL is also used by some third party sqlite GUI tools
etc.
http://www.sqlite.org/sqlite-source-3_3_5.zip contains preprocessed
source files. In particular it contains sqlite.h which is needed to
compile applications that will link to sqlite (either statically or
dynamically). You will also need these source files to include sqlite
directly into your application, or to build a static library to link
with your application.
HTH
Dennis Cote