-->
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.  [ 2 posts ] 
Author Message
 Post subject: cascade bzw. on delete cascade
PostPosted: Sun Jun 18, 2006 12:14 pm 
Beginner
Beginner

Joined: Tue Mar 14, 2006 10:00 am
Posts: 22
Hibernate version: 3.1

[b]Mapping documents:
Code:
<class name="License">
      <cache usage="read-write" />
      <id name="id" type="long" column="licenseid" unsaved-value="0">
         <generator class="foreign">
            <param name="property">person</param>
         </generator>
      </id>
      <property name="number" type="string" length="50"
         not-null="true" />
      <property name="expirationDate" type="date" not-null="true" />
      <property name="issueDate" type="date" not-null="true" />
      <property name="informed" type="boolean" />
      <property name="category" type="integer" />

      <one-to-one name="person" cascade="all-delete-orphan"/>
   </class>


hallo!

ich hab folgendes problem!
ich hab eine 1:1 beziehung zwischen Person und Lizenz (mapping von Lizenz siehe oben)
dabei möchte ich, dass wenn die person gelöscht wird, dass die lizenz mit gelöscht wird, meine versuche scheitern aber
das
Code:
cascade="delete"
funktionieren nicht
mit
Code:
constraint="true"
wird zwar ein constraint in die db hinzugefügt aber leider ON DELETE NO ACTION

wie kann ich den schemaexport dazu überreden dieses einfache problem zu lösen?

tom


Top
 Profile  
 
 Post subject:
PostPosted: Sun Jun 18, 2006 1:31 pm 
Newbie

Joined: Thu Feb 16, 2006 2:05 pm
Posts: 10
Location: Nürnberg, Germany
So wie das in Deiner Mapping-Datei konfiguriert wird, würde beim Löschen der Lizenz die zugeordnete Person mitgelöscht.

Wenn Du die <one-to-one>-Beziehung nicht bei der Lizenz, sondern bei der Person angibst, dann müsste cascade="delete" eigentlich funktionieren wie gewünscht.

_________________
Please rate this post, if it helped you.


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 2 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.