ArrayList list =... --> Get data from database
//do some changes in the values of the objects in the list
for(MyObject object:list){ object.save(); }
Instead of this for loop is there a way to save multiple items that is more efficient than calling save() a bunch of times?