0

I'm just curious as in how is it possible that i can execute sqlite3 command when i can't locate the sqlite3.exe file?

Tried to locate it in program files, not found. Tried to locate it in Environment Variables, also not found. Any ideas?

Thanks.

user1885498
  • 687
  • 1
  • 7
  • 13

2 Answers2

3

Just because you can't doesn't mean the system can't :-)

The where.exe command can be used to see where the executable is being found:

> where sqlite3.exe

(The executable should be located in the current working directory or as a file in one of the paths listed in the %PATH% environment variable.)

Community
  • 1
  • 1
1

Its command line shell, which doesnt come implicitly with SQLite framework,
You can download it from here
For more variety of download look here

Gaurav Gandhi
  • 2,536
  • 2
  • 23
  • 35