I am trying to get SQLite up and running…
Codecademy lesson:
https://www.codecademy.com/paths/web-development/tracks/sql-for-web-development/modules/setting-up-sqlite/articles/what-is-sqlite
I have downloaded the file from SQLite.
I unzipped it and can see the sqlite3.exe file in a few folders deep.
I go into Bash as instructed and go to the folder the exe file is located.
When I type: winpty ./sqlite3.exe
I get this error:
$ winpty ./sqlite3.exe
winpty: error: cannot start 'C:/Users/inlay/Documents/CHIP/SQLite/sqlite-tools-win32-x86-3340100/sqlite-tools-win32-x86-3340100/sqlite3.exe': The requested operation requires elevation. (error 0x2e4)
If I go to the folder in windows, and right-click on it, select ‘run as administrator’, I get this message:
User Account Control
“Do you want to allow this app from an unknown publisher to make changes to your device.”
So, I’m figuring that this is part of the problem.
I’ve looked at the properties of the folder that the exe is in, and the file itself, and it seems that I have full control.
I’m not sure what exactly is wrong.
Any help would be appreciated.
Chip