Installing SQLite3 on Windows
Dendi Handian

Dendi Handian @dendihandian

About: Data Engineer - Building Data Lake & Modern Data Architecture

Location:
Jakarta
Joined:
Oct 13, 2019

Installing SQLite3 on Windows

Publish Date: Feb 12 '23
343 2

Downloading SQLite binary

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

sqlite windows binary download links

Copying 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

Adding 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

Verifying the 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

Comments 2 total

  • Marcin Szolke/Scholke
    Marcin Szolke/ScholkeAug 24, 2023

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

    • Dendi Handian
      Dendi HandianAug 24, 2023

      please elaborate, are you asking or offering a product?

Add comment