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 Gian-Carlo Pascutto
Recipients Gian-Carlo Pascutto, jamercee, r.david.murray
Date 2015-03-06.23:27:53
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1425684473.79.0.920381048419.issue23129@psf.upfronthosting.co.za>
In-reply-to
Content
I've ran into this as well, when a program that was running correctly with PostgreSQL turned out to produce garbage with SQLite. Code to reproduce roughly looks like this:

    sel_cursor = conn.cursor()
    sel_cursor.execute("SELECT prim_key_id FROM "
                       "somedb ORDER BY start_time ASC")
    add_cursor = conn.cursor()
    prim_keys = set()
    row = sel_cursor.fetchone()
    while row:
        seq = row[0]
        if seq in prim_keys:
            raise RuntimeError
        prim_keys.add(seq)
        add_cursor.execute("INSERT INTO someotherdb "
                           "VALUES (?)",
                           seq)
        conn.commit()
        row = sel_cursor.fetchone()
    conn.commit()

This will raise a RuntimeError because the SELECT will return the same primary key value twice - something that's obviously impossible.

This exact bug has been filed once more already, and it seems to be an actual regression in Python 2.7:
http://bugs.python.org/issue10513

Looking at the code there, I agree with the analysis in this message: http://bugs.python.org/issue10513#msg150162

Either the pysqlite_do_all_statements should set reset_cursors=1 to warn the user that the cursor has been reset, or it shouldn't reset them to begin with (as Python <2.7 used to do).

I don't think there's any argument this isn't a (bad) bug: Python <2.7 works correctly and later versions silently corrupt data.
History
Date User Action Args
2015-03-06 23:27:53Gian-Carlo Pascuttosetrecipients: + Gian-Carlo Pascutto, r.david.murray, jamercee
2015-03-06 23:27:53Gian-Carlo Pascuttosetmessageid: <1425684473.79.0.920381048419.issue23129@psf.upfronthosting.co.za>
2015-03-06 23:27:53Gian-Carlo Pascuttolinkissue23129 messages
2015-03-06 23:27:53Gian-Carlo Pascuttocreate