Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there a way to use variable length placeholders in an SQL query?

Right now with a 3-tuple, I write something like this:

c.execute('SELECT * FROM table WHERE word IN (?, ?, ?)', tup)

But what if the tup can be of differing lengths, perhaps a 4-tuple or 2-tuple? Is there a syntax for using placeholders in this situation? If not, what is the preferred way to write the code?

share|improve this question

1 Answer

up vote 7 down vote accepted

You'd have to do something like this (to use your example):

tup = ... # some sequence/tuple of unknown length
sql = 'SELECT * FROM table WHERE word IN (%s)' % ', '.join('?' for a in tup)
c.execute(sql, tup)

This way you're dynamically creating the placeholder list and formatting the SQL string before the sqlite3 module parses it out.

share|improve this answer
I had hoped there was ?? or ?* variant for this sort of thing, but your suggestion will do nicely. – Raymond Hettinger Nov 3 '11 at 7:35
3  
I'd write ', '.join('?' for a in tup) as ', '.join('?'*len(tup)) – Duncan Nov 3 '11 at 9:24
2  
@Duncan: Idunno that seems less clear to me more signal noise. The generator comprehension seems to read more like english – rossipedia Nov 3 '11 at 18:57
Would 'SELECT * FROM table WHERE word IN (%s)' % (len(tup) * '?, ') work , or the last comma isn't accepted in an SQL query ? – eyquem Nov 7 '11 at 19:09

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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