Hi,
I'd like some advice on designing a solution to a problem that I'm facing:
I'm displaying data to the user and allowing them to filter it using Hibernate Criteria. The data set is very large so can't be loaded into memory, I'm paging the data.
I have a requirement to allow all of the filtered data to be updated. Just a case of updating a single column with a set value.
I've taken a look and can't find a way in which I can perform an update and make use of the same Criteria that I used to filter the data in the first place.
I don't really want to load the entire data set in memory using the criteria (since its large) and then perform updates.
Is there a way I can do this easily? Any help on finding a good solution welcome.
Thanks
Jit
|