Usage
First, check that a file named sqlite_shell.py
exists alongside the assignment files. If you don't see it, or if you encounter problems with it, read the Troubleshooting section to see how to download an official precompiled SQLite binary before proceeding.
You can start an interactive SQLite session in your Terminal with the following command:
$ cd to/the/code/directory
$ python sqlite_shell.py
Following prompts are expected:
SQLite version 3.35.5 (adapter version 2.6.0)
Enter ".help" for usage hints.
Connected to a transient in-memory database.
Use ".open FILENAME" to reopen on a persistent database.
sqlite>
While the interpreter is running, you can type .help
to see some of the commands you can run.
To exit out of the SQLite interpreter, type .exit
or .quit
or press Ctrl-C
. Remember that if you see ...>
after pressing enter, you probably forgot a ;
.
You can also run all the statements in a .sql
file by doing the following:
-
Runs your code and then opens an interactive SQLite session, which is similar to running Python code with the interactive
-i
flag.python sqlite_shell.py --init lab11.sql
-
(Linux, macOS) Runs your code and then exits SQLite immediately afterwards.
python sqlite_shell.py < lab11.sql