Hi,
thanks for the reply.
tenwit wrote:
If you can model the table using distinct Classes for each updatable chunk, then yes, no problem.
Yes, that's exactly what I intended to do. So that is another big plus point for Hibernate.
tenwit wrote:
If you want a single class to model the table, then you have to write an update "query" for each way of updating the table. For this, you need hiberante 3.1 or later, but it is reasonably comprehensive. When you save an object, the normal update is executed; to use one of the alternatives, you need to get the query, set the object as a parameter to the query, then execute it. It's no more complicated, it just requires a separate save method or what-have-you.
That is not a option I had considered, but I will give some thought now. :-)
Thanks again,
BraileTrail