In Sqldelight we have ```DELETE FROM XYZTable WHER...
# squarelibraries
t
In Sqldelight we have
Copy code
DELETE FROM XYZTable
WHERE id IN ?;
and on some android devices we are getting
Copy code
too many SQL variables (code 1 SQLITE_ERROR[1]): , while compiling: DELETE FROM XYZTable WHERE id IN (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?....
Am I doing something obviously wrong?