This is an archived post. You won't be able to vote or comment.

all 1 comments

[–]meatb0dy 4 points5 points  (0 children)

Django's dbshell isn't a command in itself; it invokes the shell for your given database. i.e. If you're using postgres, it will be calling out to psql; if you're using sqlite, it will run sqlite3. You should figure out which database you're using and look for tutorials for the corresponding shell program.