-->
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: How to query a Collection of CompositeUserType in HQL?
PostPosted: Sat Jun 18, 2005 6:50 pm 
Beginner
Beginner

Joined: Wed Dec 31, 2003 1:40 pm
Posts: 25
Hallo, mein Object-Modell ist voll von abstrakten datentypen und
daher habe ich fast nur CompositeUserTypes. Ich kriege nicht
raus wie ich eine Collection von CompositeUserType abfragen
kann. Hier ist ein Beispiel

Code:
<class name="eg.Role" ...>
  ...
  <property name="simpleId" type="II">
    <column name="simpleId_root" sql-type="VARCHAR" length="255"/>
    <column name="simpletId_extension" sql-type="VARCHAR" length="255"/>
  </property>

  <set name="id" table="Role_id" lazy="true" access="eg.WrappingSetAccessor" sort="unsorted" inverse="false" batch-size="1" outer-join="auto" optimistic-lock="true">
    <key column="Role_INTERNAL_ID" on-delete="noaction"/>
    <element type="II" not-null="false" unique="false">
      <column name="root" sql-type="VARCHAR" length="255"/>
      <column name="extension" sql-type="VARCHAR" length="255"/>
    </element>
  </set>
  ...
</class>


Dabei genuegt es zu sagen dass "II" ein CompositeUserType ist mit
den Properties "root" und "extension". Ich kann den einfachen fall
(simpleId) ganz einfach abfragen:

from eg.Role as role where role.simpleId.extension='test'

daher weiss ich dass der II CompositeUserType funktioniert. Ich
weiss auch dass ich das Set abfragen kann:

from eg.Role inner join role.id

Aber wenn ich versuche nach einem bestimmten "id" element zu
suchen, dann geht es nicht:

from eg.Role as role inner join role.id as roleid where roleid.extension='test'

Der fehler ist "Invalid path: 'roleid.extension'"

Hat jemand hier ein Beispiel wie man eine Join abfrage an eine
Collection eines CompositeUserTypes formuliert? Was mache ich
falsch? Geht das ueberhaupt?

Vielen Dank.


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.