How To Download & Install Sqlite On Windows
How To Download & Install Sqlite On Windows
html
From the SQLite official website in the download section. The following
screenshot allows you to download different SQLite's installation packages for
Windows:
32-bit DLL(x86): The SQLite Database system core library for x86
platforms.
64-bit DLL (x64): The SQLite Database system core library for x64
1 of 6 2019/12/27, 10:56
How to Download & Install SQLite on Windows https://www.guru99.com/download-install-sqlite.html
platforms.
Step 1) Download the highlighted download package from the previous image to
your PC. It is a "zip" file.
Step 2) Extract the zip file. You will find the "sqlite3.exe" in the extracted file as
following:
Step 3) Open My Computer, and double-click the partition "C" to navigate to it:
2 of 6 2019/12/27, 10:56
How to Download & Install SQLite on Windows https://www.guru99.com/download-install-sqlite.html
Step 5) Copy the file "sqlite3.exe" into it. This is what we will use through the
tutorials to run SQLite queries:
However, there are some other packages for different purposes. They are not
required. But you might need it if you are using a different OS than Windows you
can get the Linux or Mac OS version of SQLite.
Also, you can get the documentation or source code from there if you wish. You
can also get the API for Windows Phone 8 or .Net and other programming
languages.
The Source Code and some alternative Source Code Formats – The complete
source code that made up the SQLite.
The documentation – The documentation of the SQLite as HTML pages. It
is the same online documentation, but downloadable as HTML page so that
you can open them offline.
Precompiled Binaries for Linux.
Precompiled Binaries for Mac OS X (x86).
3 of 6 2019/12/27, 10:56
How to Download & Install SQLite on Windows https://www.guru99.com/download-install-sqlite.html
The official SQLite website has dozens of such tools listed; you can view them
from here: SQLite Management Tools. Here is the recommended one
Step 1) Open a text file and paste the following commands into it:
4 of 6 2019/12/27, 10:56
How to Download & Install SQLite on Windows https://www.guru99.com/download-install-sqlite.html
Step 3) Open the Windows Command Line tool (cmd.exe) from the start menu,
type "cmd" and open it.
Step 4) It will open in the default path, you need to navigate to the "C:\sqlite"
folder we had created earlier in this tutorial by the following command "cd
"C:\sqlite":
5 of 6 2019/12/27, 10:56
How to Download & Install SQLite on Windows https://www.guru99.com/download-install-sqlite.html
The command should be completed successfully, and you should see no output
after that command as the following screenshot:
6 of 6 2019/12/27, 10:56