Philipl
Philipl

Reputation: 415

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

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.

Upvotes: 6

Views: 9845

Answers (6)

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

Upvotes: 0

abhishek kumar
abhishek kumar

Reputation: 379

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

More reference from here: SQLite CLI

Upvotes: 6

Himen
Himen

Reputation: 1450

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 :)

Upvotes: 3

Andrew League
Andrew League

Reputation: 11

You can just hit the key combination Ctrl + C.

Upvotes: 1

Philipl
Philipl

Reputation: 415

Just typing quit does the work.

Upvotes: 1

Mitchell van Zuylen
Mitchell van Zuylen

Reputation: 4125

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.

Upvotes: 9

Related Questions