http://www.sqlite.org/download.html - The download page shows 3 pre-compiled zips for the database. It doesn't look like a full installation. Where am I supposed to开发者_Go百科 install these files?
Here is the list:
Precompiled Binaries For Windows
sqlite-shell-win32-x86-3070701.zip (244.12 KiB) A command-line shell for accessing and modifying SQLite databases.
sqlite-dll-win32-x86-3070701.zip (278.28 KiB) This ZIP archive contains a DLL for the SQLite library version 3.7.7.1.
sqlite-analyzer-win32-x86-3070701.zip (710.48 KiB) An analysis program for database files compatible with all SQLite versions through 3.7.7.1 and beyond.
There are shell and analyzer program that can be used to interactively work with sqlite databases without writing any code. Shell is an interactive SQL command-line interface; and analyzer is program to get info about some sqlite database. You can place this tools anywhere, or install them to some folder, which is in your %PATH%.
DLL is compiled sqlite library that should be placed in your application directory.
精彩评论