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 install these files?
How to install SQLite on Windows?
19.3k views Asked by Jason At
2
There are 2 answers
1
On
You can install SQLite on Windows so that you can use it on terminal(command prompt).
First, download the 3rd one saying A bundle of command-line ...
from the website:
Then, unzip it, then get 3 files below, then put them in C:\sqlite\
which you need to create manually:
sqldiff.exe
sqlite3.exe
sqlite3_analyzer.exe
Then, search and click on Edit the system environment variables
:
Then, click on Environment Variables...
:
Finally, set C:\sqlite
to Path in both or either User variables and/or System variables, then you can use SQLite on terminal(command prompt). *User variables are specific only to the currently logged-in user and System variables are globally accessed by all users:
Here is the list:
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.