I'm using Sqlite3 database in my Python application and query it using parameters substitution.
For example:

cursor.execute('SELECT * FROM table WHERE id > ?', (10,))

Some queries do not return results properly and I would like to log them and try to query sqlite manually.
How can I log these queries with parameters instead of question marks?

link|improve this question

Looks similar to this question, though that example doesn't specify Python. See if it helps. – thegrinner Aug 4 '11 at 13:18
feedback

1 Answer

Assuming that you have a log function, you could call it first :

query, param = 'SELECT * FROM table WHERE id > ?', (10,)
log(query.replace('?', '%s') % param)
cursor.execute(query, param)  

This has the advantage of not being Sqlite specific.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.