DEV Community

Dendi Handian
Dendi Handian

Posted on • Updated on

Installing SQLite3 on Windows

Downloading SQLite binary

Go to sqlite.org/download.html, choose sqlite-tools-win32-x86-*******.zip to download.

sqlite windows binary download links

Copy binary to installation folder

Create a folder inside C:\Program Files named sqlite. Extract the downloaded zip and put all three binary files in this folder.

sqlite binary in windows

Add path for sqlite binary

Hit Windows key and find for edit the system environment variables control panel shortcut and open it.

Go to environment variables, chose Path variable and add C:\Program Files\sqlite to the path.

adding sqlite3 path

Verify Installation

Open new command prompt (cmd) and execute this to check sqlite3 version and confirm the installation:

sqlite3 --version
Enter fullscreen mode Exit fullscreen mode

sqlite3 --version

Top comments (2)

Collapse
 
lov111vol profile image
Marcin Szolke/Scholke

SQLIte database in SharedFolder
What is your experience with such a solution, how many people can use this application in parallel ?

Collapse
 
dendihandian profile image
Dendi Handian

please elaborate, are you asking or offering a product?