Download and installation steps of SQLite database

Here is the download and installation of SQLite database for Windows

1. Download

First go to the SQLite official website to download (official website download address: https://www.sqlite.org/download.html )

 

Find the precompiled binaries from the Windows area, as shown in the following figure:

Download and decompress the two files sqlite-dll-win32-x86-3380200.zip and sqlite-tools-win32-x86-3380200.zip

2. Installation

1. Create a new folder under the C drive, name it sqlite, put the decompressed files into it, and get the following picture:

 2. Add C:\sqlite to the PATH environment variable:

Right click on "This Computer" - Properties - Advanced - Environment Variables - New. As shown below:

 Finally, enter sqlite3 in the cmd command to display the sqlite version, which means the installation is successful

Next, you can use the SQLite command to operate the SQLite database.

This is an operation mode of the SQLite database. You can also create, edit, and browse the SQLite database through the SQLite visualization tool [SQLiteStudio]. We will continue to introduce it in the next article.

Guess you like

Origin blog.csdn.net/Waterme10n/article/details/123865723