Sqlite from the command line - an unrecognized command

I am trying to run sqlite from the command line. So I downloaded sqlite-shell-win32-x86-3071100.zip from this site http://www.sqlite.org/download.html

Now there is a set of up.exe from which v can run sqlite commands. When I speak

C:\Users\..>'sqlite3' is not recognized as an internal or external com

''sqlite3'' is not recognized as an internal or external command,
operable program or batch file.

Any clues.

Thank. Sun

+6
source share
2 answers

From the windows command line, you can start sqlite3 with:

cd c:\Stuff
sqlite3.exe

or using:

c:\Stuff\sqlite3.exe

In any case, I assume from your comment what sqlite3.exeis in c:\Stuff.

, , sqlite3.exe, PATH. : http://geekswithblogs.net/renso/archive/2009/10/21/how-to-set-the-windows-path-in-windows-7.aspx

+5

, : sqlite , .

0

All Articles