-->
These old forums are deprecated now and set to read-only. We are waiting for you on our new forums!
More modern, Discourse-based and with GitHub/Google/Twitter authentication built-in.

All times are UTC - 5 hours [ DST ]



Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 8 posts ] 
Author Message
 Post subject: How to force a "ON DELETE SET NULL" ?
PostPosted: Sun Jul 10, 2005 4:57 pm 
Newbie

Joined: Sun Jul 10, 2005 10:17 am
Posts: 6
Hi!

This is how my simplified association looks like:
I have got an employee and a pc table.

Code:
<hibernate-mapping>
    <class name="src.Employee" table="EMPLOYEE">
        <id name="id" column="id">
            <generator class="increment"/>
        </id>
        <property name="name"/>
    </class>
</hibernate-mapping>


Code:
<hibernate-mapping>
    <class name="src.Pc" table="PC">
        <id name="id" column="id">
            <generator class="increment"/>
        </id>
        <many-to-one name="emp" cascade="none" not-null="false"/>      
    </class>
</hibernate-mapping>


The problem I have is that when I want to delete an employee, his pc shouldn't be deleted, the only action which shall take place is that his foreign key (emp) to the employee should be set to null.

I couldn't find anything in the documentation and after searching the forum for hours, I hope that somebody can help me. All I want is a ON DELETE SET NULL statement within the foreign key constraint.

Oh, and I'm using Oracle 9i and Hibernate 3 but this won't matter much anyway, does it?

Thanks for any help,
Markus


Top
 Profile  
 
 Post subject:
PostPosted: Sun Jul 10, 2005 5:48 pm 
Beginner
Beginner

Joined: Fri Jul 08, 2005 12:38 pm
Posts: 41
Location: Massachusetts, USA
You don't have a one-to-many declaration in the Employee mapping?


Top
 Profile  
 
 Post subject:
PostPosted: Mon Jul 11, 2005 4:05 am 
Newbie

Joined: Sun Jul 10, 2005 10:17 am
Posts: 6
Should I?

I just need a unidirectional association. Anyway this won't help me with my problem or will it?

Markus


Top
 Profile  
 
 Post subject:
PostPosted: Tue Jul 12, 2005 9:42 am 
Newbie

Joined: Sun Jul 10, 2005 10:17 am
Posts: 6
Hibernate Team:
Is my question not understandable or isn't this feature implemented in Hibernate yet?

I just want to make sure that I don't waste time with something which would'nt work anyway.

thanks for any information concerning this problem.


Top
 Profile  
 
 Post subject:
PostPosted: Tue Jul 12, 2005 12:21 pm 
Expert
Expert

Joined: Wed Apr 06, 2005 5:03 pm
Posts: 273
Location: Salt Lake City, Utah, USA
I don't think this is implemented. You probably have to do it in code.


Top
 Profile  
 
 Post subject:
PostPosted: Tue Jul 12, 2005 3:19 pm 
Newbie

Joined: Sun Jul 10, 2005 10:17 am
Posts: 6
First of all, thank you for your answer.

Currently I am writing an application that uses Hibernate, but without the support of "on delete set null" I would have to change the data on the database (in my simple case, when I delete a user 'a' then all pcs, which belong to 'a' have to be updated. ) with an additional sql statement every time a user gets deleted.

Isn't there any other/better oppurtunity?

Thanks again,
Markus

P.S.: @Hibernate Team: If this feature isn't implemented yet, then it could be added to the TODO list of the following releases.


Top
 Profile  
 
 Post subject:
PostPosted: Tue Jul 12, 2005 4:16 pm 
Expert
Expert

Joined: Mon Feb 14, 2005 12:32 pm
Posts: 609
Location: Atlanta, GA - USA
scorp2025 wrote:
First of all, thank you for your answer.

Currently I am writing an application that uses Hibernate, but without the support of "on delete set null" I would have to change the data on the database (in my simple case, when I delete a user 'a' then all pcs, which belong to 'a' have to be updated. ) with an additional sql statement every time a user gets deleted.

Isn't there any other/better oppurtunity?

Thanks again,
Markus

P.S.: @Hibernate Team: If this feature isn't implemented yet, then it could be added to the TODO list of the following releases.


Isn't the 'ON DELETE SET NULL' something you define in your database ? Hibernate only deals with mapping SQL to Objects.

I could see where you might want to add support for this in the Hibernate Tools.


Top
 Profile  
 
 Post subject:
PostPosted: Tue Jul 12, 2005 4:42 pm 
Newbie

Joined: Sun Jul 10, 2005 10:17 am
Posts: 6
Quote:
Isn't the 'ON DELETE SET NULL' something you define in your database ?


Absolutely.
But if my associations don't exist on the database, Hibernate creates those (At least I think so). And this is my problem: A foreign key with a "SET NULL ON DELETE" isn't generated with my code by Hibernate.

Or am I mistaken?


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 8 posts ] 

All times are UTC - 5 hours [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
© Copyright 2014, Red Hat Inc. All rights reserved. JBoss and Hibernate are registered trademarks and servicemarks of Red Hat, Inc.