show/hide this revision's text 2 Used a suggestion from the comments.

Yes; a related trick is if you have X potential filters, some of them optional, is to have the template say " AND ( some_field = ?=-1 OR some_field = ? =-1 ) ", and create a special function that wraps the execute call and binds all the second ?s. (in this case, -1 is a special value meaning 'ignore this filter').

Update from Paul Tomblin: I edited the answer to include a suggestion from the comments.

show/hide this revision's text 1

Yes; a related trick is if you have X potential filters, some of them optional, is to have the template say " AND ( some_field = ? OR ?=-1 ) ", and create a special function that wraps the execute call and binds all the second ?s. (in this case, -1 is a special value meaning 'ignore this filter').