import sqlite3
conn = sqlite3.connect(r"D:\aaa.db")
Is there a way to automatically create the db file if it doesn't already exist when I connect to it?
thanks
import sqlite3
conn = sqlite3.connect(r"D:\aaa.db")
Is there a way to automatically create the db file if it doesn't already exist when I connect to it?
thanks
The code you give does create 'D:\\aaa.db'
if it doesn't exist.
If it isn't created automatically, make sure that you have the directory permissions correct