Install SQLite3 on windows 11:
SQLite
is an open-source, zero-configuration, self-contained, stand-alone, transaction relational database engine designed to be embedded into an application.
Steps you need to follow for installation of sqlite3 on windows 11:
- Step 1 − To SQLite3 download precompiled binaries for windows.
- Step 2 − Create a folder
C:\>sqlite
and unzip above two zipped files in this folder, which will give yousqlite3.def
,sqlite3.dll
andsqlite3.exe
files.
- Step 3 − Add
C:\>sqlite3
in your PATH environment variable and finally go to the command prompt and issue sqlite3 command, which should display the following result.