-->
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: Index wird nicht erzeugt innerhalb von <properties>
PostPosted: Mon Jul 14, 2008 10:53 am 
Newbie

Joined: Fri Jul 11, 2008 7:48 am
Posts: 5
Guten Tag,

meine Hibernate-Klasse Foo hat eine many-to-one Beziehung zu der Klasse Bar. Auf der Spalte "bar_id" möchte ich einen index haben. Das klappt auch wunderbar mit dem folgenden Mapping:

Code:
<many-to-one foreign-key="foo_bar_fk" lazy="false" name="bar" class="Bar">
      <column name="bar_id" index="foo_bar_id_i" not-null="true"/>
    </many-to-one>


Jetzt möchte ich allerdings die "bar_id" in einem unique-key verwenden. D.h. ich packe mein many-to-one zusammen mit noch einer property in ein <properties> -tag:

Code:
<properties unique="true" name="foo_uk">
<many-to-one foreign-key="foo_bar_fk" lazy="false" name="bar" class="Bar">
      <column name="bar_id" index="foo_bar_id_i" not-null="true"/>
   
</many-to-one>
<property name="code" not-null="true" length="50"/>
</properties>


Jetzt wird zwar mein unique key einwandtfrei erzeugt, aber der index fehlt. Ich benutze den SchemaExport von Hibernate. Als Datenbank habe ich Oracle 10.02.

Jemand eine Idee? Danke im Voraus!


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.