使用django时如何在命令行中退出dbshel​​l(sqlite3)?

时间:2016-10-23 16:36:27

标签: python django sqlite

使用django时,如何在命令行中退出dbshel​​l(sqlite3)? 这是我第一次使用该命令。我同时看书和练习django。运行此命令后,我不知道如何离开环境,因为我以前从未学过sql。

5 个答案:

答案 0 :(得分:1)

我发现它只是输入quit做的工作。 我不熟悉环境。 还是谢谢你。

答案 1 :(得分:1)

如果其他人像我一样碰到了这个,只需点击ctrl-c。

答案 2 :(得分:0)

您可以在shell中键入 .exit 退出。有关命令的更多信息,请键入.help

答案 3 :(得分:0)

Because this is the first answer when googling "django exit dbshell" I'll put my answer here.

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

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

If it's psql, like my case, it's \q

答案 4 :(得分:0)

@Philipl,您可以使用'.quit'退出sqlite shell。请注意前面的圆点。

更多参考从这里。 sqlite cli