Details
Description
It would be very convenient if jdbi expanded array arguments automagically.
If a query looks like:
select * from table where id in :id
and an array with 5 elements is is bound to "id", jdbi should translate the statement into:
select * from table where id in (?,?,?,?,?)
There may be some potential issues with positional parameters that would need to be worked out, but I think this approach should work.
Most asked for feature... ever