1. Obtain the command lineProgram
The SQLite command line program (CLP) is the best option to start using SQLite. Obtain the CLP following the steps below:
1) Open your browser and go to the SQLite homepage www.sqlite.org.
2) Click the download option at the top of the page to go To the download page.
3) scroll to"Precompiled binaries for WindowsSelect sqlite-shell-win32-x86-3071401.zip (item 1) and click Download.
4) use the decompression tool to decompress the package. The zip file contains a sqlite3.exe file. You can use SQLite from the extracted file location. To run CLP in any directory, copy the file to the Windows system path. By default, the operating path in Windows is under the root partition (C: \ windwos \ System32 ).
5) Open the Run window and Enter cmd to bring up the windows command line window.
6) in the command line window, enter sqlite3 and press Enter. The SQLite command line prompt will appear. When the SQLite command line prompt appears, enter. Help, and a column similar to related commands will appear. Enter. Exit and exit the program.
Now you have a working SQLite CLP copy installed on the system.
If you want to use SQLite at the moment, pay attention to the next section (shell mode CLP ).