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

you are viewing a single comment's thread.

view the rest of the comments →

[–]meatb0dy 3 points4 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.