1đź‘Ť
âś…
Sqlite doesn’t have a “list of databases”. It’s not a client-server system, but operates only on a single file at a time – which you can specify when you start:
sqlite3 mydatabase.db
Django includes a command to start up the relevant database shell with the correct parameters:
manage.py dbshell
👤Daniel Roseman
Source:stackexchange.com