aspose file tools
The moose likes Object Relational Mapping and the fly likes Hibernate - Force foreign key lookup on insert Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Databases » Object Relational Mapping
Reply Bookmark "Hibernate - Force foreign key lookup on insert" Watch "Hibernate - Force foreign key lookup on insert" New topic
Author

Hibernate - Force foreign key lookup on insert

Ally Cavs
Ranch Hand

Joined: Aug 25, 2008
Posts: 79
Hello

These are the mappings of my SQL DB:

USERACCOUNT
-------------
Userid (PK) --autoincrement



USERACCOUNTInvoice
-------------
Userid (PK) –-Foreign Key to the above
Invoics(PK) --autoincrement


In my app I create a new UserAccountInvocie object which I persist by doing a session,save(useraccount) I get an error saying

Cannot intert null into UserAccountInvoiceTable for field UserID

NOTE: there are a number of USERACCOUNTInvoice objects in a SET in the USERACCOUNT object. So ideally saving parent will cascade down to child changes

Is there a way of mapping the relationship in the XML so Hibernate knows to use the userID of the parent UserAccount object. I don’t think I should set the userID in USERACCOUNTInvoice manually as I think Hibernate will get very confused if I partially set the composite key. And I don’t want to loop through a the child set and save new USERACCOUNTInvoice either. Unless I have too?





 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: Hibernate - Force foreign key lookup on insert
 
Similar Threads
hbm.xml file does an update instead of an insert- Helppppp
One-to-many mapping and composite key
1-to-M mapping confusion
Ternary and composite ID
Please suggest on this Mapping