write updated data from a Value List Handler to the db

I am using the Value List Handler Pattern to read a large set of data. My DAO returns a HashTable containing VOs. The data is displayed as a HTML from and can be edited -> so I need to write the changed data back to the database (in bad cases the whole HashTable). Any suggestions how to do this with good performance?

Thanks in advance.

[353 byte] By [Mlinara] at [2007-9-27 7:42:26]
# 1
I would watch out for DirtyWrites, but with what you have, your bestbet would be to post the data and do a bluk update if possible.Checking for DirtyWrites of course, depending on wheather or not thatis a problem for you.Regards,TK.
TravisKa at 2007-7-8 11:53:21 > top of Java-index,Other Topics,Patterns & OO Design...