Hi!

Is it possible to use bindValue with a SELECT statement like:

Qt Code:
  1. SELECT * FROM stuff WHERE id IN (1, 2, 3, 4)
To copy to clipboard, switch view to plain text mode 

I have tried several options, including using a QList<QVariant> with:

Qt Code:
  1. SELECT * FROM stuff WHERE id IN (:ids)
To copy to clipboard, switch view to plain text mode 

but no luck

Thanks!