If I have the following code:
conn = sqlite3.connect('abc.db')
.. it will create DB fle called abc.db
if it doesn't already exist. What do I do if I don't want to create a new file and only want the connection to succeed if the file already exists?