I have a SELECT statement like SELECT * FROM table where id=? and key IN (?,?..?)
.
For INSERT,UPDATE we have this batchWithParams, how can I do this for SELECT. I am using JDBC driver for MySQL database. The array list is like so,
BATCH [[100,4,11], [150,4,12]]
Why not just convert the ArrayList into String? Like this: