-->
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.  [ 1 post ] 
Author Message
 Post subject: Foreign key constraint fails
PostPosted: Thu Apr 19, 2012 4:46 am 
Newbie

Joined: Mon Feb 13, 2012 4:59 am
Posts: 8
Hallo!

Ich hab hier ein Hibernate-Mapping, welches nicht so ganz gut funktioniert.
Der Sachverhalt ist:
Es gibt eine Klasse SimpleUser und eine Klasse MapItemHib.
Jedes Objekt von MapItemHib hat als Attribut ein Objekt von SimpleUser.
Es können aber mehrere MapItemHibs zu einem User gehören.
Sollte also eine many-to-one-Beziehung sein, oder?

Ich habe jetzt folgende mapping-Dateien (Ausschnitte):

MapItemHib.hbm.xml
Code:
<many-to-one name="owner" class="test.SimpleUser"
        cascade="save-update" column="OWNER" />


und

SimpleUser.hbm.xml
Code:
<hibernate-mapping>
    <class name="test.SimpleUser" table="SIMPLEUSER">
        <id name="id" type="java.lang.Long">
            <column name="ID" />
            <generator class="native" />
        </id>
   ... weitere properties...

    </class>
</hibernate-mapping>



Wenn ich jetzt aber einen SimpleUserEintrag erstellen möchte, kommt der Fehler:
Code:
ERROR: Cannot add or update a child row: a foreign key constraint fails (`test`.`simpleuser`, CONSTRAINT `FKC7A4E07D72CFDE7B` FOREIGN KEY (`ID`) REFERENCES `mapitemhib` (`ITEMID`))


Das bedeutet, dass ich den User nicht erstellen kann, weil er nirgendwo in MapItemHib referenziert wird, oder?
Aber das muss er eigentlich auch gar nicht für mich... Es kann auch einfach so ein Benutzer exisiteren ohne Referenz, wie mache ich das?


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

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.