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 anders.blomdell@control.lth.se
Recipients anders.blomdell@control.lth.se
Date 2010-11-23.12:35:31
SpamBayes Score 1.0429464e-07
Marked as misclassified No
Message-id <1290515734.43.0.643837241692.issue10513@psf.upfronthosting.co.za>
In-reply-to
Content
With version 2.7 (and 2.7.1rc1), the following sequence (see attached test):
   
   c =  cursor.execute(' select k from t where k == ?;', (1,))
   conn.commit()
   r = c.fetchone()

Traceback (most recent call last):
  File "/bugs/sqlite_bug.py", line 22, in <module>
    c =  cursor.execute(' select k from t where k == ?;', (2,))
sqlite3.InterfaceError: Error binding parameter 0 - probably unsupported type.

The program works with 2.6.2
History
Date User Action Args
2010-11-23 12:35:34anders.blomdell@control.lth.sesetrecipients: + anders.blomdell@control.lth.se
2010-11-23 12:35:34anders.blomdell@control.lth.sesetmessageid: <1290515734.43.0.643837241692.issue10513@psf.upfronthosting.co.za>
2010-11-23 12:35:31anders.blomdell@control.lth.selinkissue10513 messages
2010-11-23 12:35:31anders.blomdell@control.lth.secreate