7

How do I exit dbshell (SQLite 3) on the command line when using Django?

It's my first time to use the command. I watch a book and am practicing Django at the same time. After I run this command, I have no idea how to leave the environment since I have never learned SQL before.

0

6 Answers 6

9

The exit key is determined by what SQL back end you're running.

If it's SQLite 3, like this question, it should be quit.

If it's PostgreSQL, like my case, it's \q.

Sign up to request clarification or add additional context in comments.

Comments

7

You may use '.quit' to exit the SQLite shell. Please mind the dot in front.

More reference from here: SQLite CLI

Comments

3

You can type .exit in thew shell to exit. For more information about commands, type .help.

It raises an error and exits ... it was helpful :)

Comments

2

You can just hit the key combination Ctrl + C.

Comments

1

Just typing quit does the work.

Comments

0

These commands below work on Windows to exit SQLite and django dbshell's SQLite:

.exit

Or:

.quit

But these commands below without a dot don't work on Windows to exit SQLite and django dbshell's SQLite:

exit

Or:

quit

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.