Hi!
Is it possible to use bindValue with a SELECT statement like:
Qt Code:
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:
SELECT * FROM stuff WHERE id IN (:ids)To copy to clipboard, switch view to plain text mode
but no luck
Thanks!
Bookmarks