aspose file tools
The moose likes Object Relational Mapping and the fly likes Hibernate: Updating version in child records Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Databases » Object Relational Mapping
Reply Bookmark "Hibernate: Updating version in child records" Watch "Hibernate: Updating version in child records" New topic
Author

Hibernate: Updating version in child records

Jim Cross
Greenhorn

Joined: Nov 20, 2003
Posts: 17
In my test application, I have two tables; J_TRADE and J_CASHFLOW. Trades may have zero-to-many associated cashflows.

J_TRADE has ID as its primary key, and a version column.
J_CASHFLOW references the trade ID column and the trade VERSION column.


The mappings are as follows:



Clearly from this, the cashflow class isn't aware that it references the trade version. So, while the cashflow trade id does get populated correctly on insert, the cashflow trade version doesn't.

Is there any way to make the cashflow reference the trade version, without making ID and VERSION a composite key in the trade table, and having to handle the trade id and version increments myself?
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: Hibernate: Updating version in child records
 
Similar Threads
HBM mapping Problem
Why a select statement, not an insert ?
Hibernate - Legacy Database Question
Hibernate causing Concurrent Modification Exception
Auto Generator in composite key