I have a code that imports an existing database and updates it.
conn = sqlite3.connect('Test.sqlite')
c = conn.cursor()
c.execute('SELECT test FROM Test')
data = c.fetchall()
c.execute('UPDATE BLAH BLAH BLAH')
c.commit()
But I want to export that data in different name, so I don't overwrite the database that I'm opening.
Is that possible?
Thanks