[Answer]-How do I register an existing file (db) with sqlite3?

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

Leave a comment