[issue26043] ON DELETE CASCADE does not work when using sqlite3 library

2016-01-18 Thread R. David Murray
Changes by R. David Murray : -- nosy: +r.david.murray ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue26043] ON DELETE CASCADE does not work when using sqlite3 library

2016-01-07 Thread Vitaminus Maximus
Changes by Vitaminus Maximus : -- resolution: -> not a bug status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing

[issue26043] ON DELETE CASCADE does not work when using sqlite3 library

2016-01-07 Thread Vitaminus Maximus
New submission from Vitaminus Maximus: Let me provide a completely reproducible code, which demonstrates the issue: >>> import sqlite3 >>> cnx = sqlite3.connect("mytest.db") >>> cnx.isolation_level = None >>> cursor = cnx.cursor() >>> cnx.execute("BEGIN") >>> cursor.