[Django]-How to access SQLite with django

7👍

You are correct: no additional download required.
This is all you need (from Windows command prompt or “cmd”):

C:\> python
>>> import sqlite3
>>> conn = sqlite3.connect('c:/path/to/your.db')
>>> conn.close() # optional

After executing the above commands you will have an SQLite file at c:/path/to/ called your.db.

Leave a comment