| Author |
deleting entity with many-to-one association
|
Saathvik Reddy
Ranch Hand
Joined: Jun 03, 2005
Posts: 228
|
|
Hi, I have two java classes Contact.java and PhoneNumber.java Contact has a many-to-one relationship with PhoneNumber. My question is if the user deletes the phone number from UI it should be delete from database. To achive this i am doing contact.setPhoneNumber(null); this code is deleting the phone number reference from contact but not deleting the record from the phone number table. How to achive this? Thanks,
|
 |
Cameron Wallace McKenzie
author and cow tipper
Saloon Keeper
Joined: Aug 26, 2006
Posts: 4967
|
|
Why not just get the phoneNumber, and then call a delete on it? That would delete the object itself. -Cameron McKenzie
|
Author of Hibernate Made Easy, What is WebSphere???, JSF 2.0 Made Easy and the SCJA Certification Guides
|
 |
 |
|
|
subject: deleting entity with many-to-one association
|
|
|