This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author seeker-Liu
Recipients berker.peksag, docs@python, erlendaasland, ghaering, seeker-Liu, terry.reedy
Date 2020-12-19.10:17:20
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1608373040.89.0.232616572705.issue42624@roundup.psfhosted.org>
In-reply-to
Content
Python 3.9.1 (default, Dec 11 2020, 14:32:07) 
[GCC 7.3.0] :: Anaconda, Inc. on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import sqlite3
>>> conn = sqlite3.connect("test.db")
>>> conn.execute("CREATE TABLE test (id INTEGER, str TEXT);")
<sqlite3.Cursor object at 0x7ff99f2df3b0>
>>> conn.execute("CREATE TABLE test (id INTEGER, str TEXT);")
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
sqlite3.OperationalError: table test already exists
>>> 


I think the reproduction is way too easy and has nothing special so I didn't include one at the very beginning. That's a simple reproduction on interactive console.
History
Date User Action Args
2020-12-19 10:17:20seeker-Liusetrecipients: + seeker-Liu, terry.reedy, ghaering, docs@python, berker.peksag, erlendaasland
2020-12-19 10:17:20seeker-Liusetmessageid: <1608373040.89.0.232616572705.issue42624@roundup.psfhosted.org>
2020-12-19 10:17:20seeker-Liulinkissue42624 messages
2020-12-19 10:17:20seeker-Liucreate