Sqlite installation

Learning: http://www.runoob.com/sqlite/sqlite-installation.html
1. Get the command line program

  SQLite Command Line Program (CLP) is the best choice to start using SQLite, follow the steps below to get the CLP:

  1). Open a browser and go to the SQLite home page, www.sqlite.org.

  2). Click the download link (Download) option at the top of the page to enter the download page.

  3). Scroll the mouse to "Precompiled Binaries for Windows", select sqlite-shell-win32-x86-3071401.zip (the first item), and click Download.

  4). Use the decompression tool to decompress it. The zip file contains a sqlite3.exe file, you can use sqlite from the location of the unzipped file; if you want to run the CLP from any directory, you need to copy the file to the Windows system path. By default, the working path in Windows is under the root partition (C:\Windwos\System32).

  5). Open the run window, enter CMD, and bring up the Windows command line window.

  6). Enter sqlite3 in the command line window and press Enter, the SQLite command line prompt will appear. When the SQLite command line prompt appears, type .help and a list of similar commands will appear. Exit the program after typing .exit.

  You now have a working copy of the SQLite CLP installed on your system.

  If you're going to use SQLite right now, follow the next section (CLP in Shell Mode).

Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=326477402&siteId=291194637
Recommended