-->
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.  [ 3 posts ] 
Author Message
 Post subject: Select Collection of Value Objects
PostPosted: Sat May 10, 2008 8:08 am 
Newbie

Joined: Sat May 10, 2008 7:39 am
Posts: 4
I would like to select a collection of value objects with a hibernate query:
Code:
select myValues from MyEntity e where e=1


But i get this error:
Code:
org.hibernate.QueryException: not an entity [select myValues from eg.MyEntity e where e=1]


How do i select a collection of value objects?

Please help.

Hibernate version: 3.2.6

Mapping documents:

Code:
<?xml version="1.0"?>
<!DOCTYPE hibernate-mapping PUBLIC
   "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
   "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">

<hibernate-mapping package="eg">
  <class name="MyEntity">
 
    <!-- primary key -->
    <id name="id">
      <generator class="native"></generator>
    </id>
     
    <!-- simple properties -->
    <property name="myProp"></property>

    <!-- collection of value objects -->
    <bag name="myValues" order-by="name asc">
      <key column="myEntity_id"></key>
      <composite-element class="ValueClass">
        <property name="name" />
        <property name="mail" />
      </composite-element>
    </bag>

  </class>
</hibernate-mapping>


Name and version of the database you are using:
mysql 5.0.51


Top
 Profile  
 
 Post subject:
PostPosted: Sat May 10, 2008 9:11 pm 
Senior
Senior

Joined: Wed Sep 19, 2007 9:31 pm
Posts: 191
Location: Khuntien (Indonesia)
Code:
select e.myValues from MyEntity e where e=1


Top
 Profile  
 
 Post subject:
PostPosted: Sun May 11, 2008 8:44 am 
Newbie

Joined: Sat May 10, 2008 7:39 am
Posts: 4
I am sorry, but that does not change anything. :-(


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