I am getting list of Address
objects from the DB call.
ArrayList<Address> addresses = new ArrayList<>();
Each Address
has an int addressId
property.
I am writing an update query where in the IN
clause I am sending this whole list of Address
objects and I am getting ibatis TypeException
. How can I convert List<Address>
to a comma separated string which can be sent to update query?
My update query looks like:::
Update tablename set postcode = #{postCode} where id in #{addressID}.
addressID
string in any way, andaddressId
field has an integer type. – Bush