-->
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: simplest HQL ?
PostPosted: Fri Mar 17, 2006 2:10 am 
Regular
Regular

Joined: Wed Mar 08, 2006 2:07 am
Posts: 50
Location: Bangalore
The only thing that seems a problem is that placerorderidentifierdomain is Object reference of type Identifierdomain and Identifierdomain class has string property assigningAuthorityId. (I am talking abt string values passesd as 1st param to Restriction's static methods).
But that should work shouldnt it ?



Query
Code:
        Criteria criteria = session.createCriteria(myhibernate.valueobjects.Orders.class)
                       .add(Restrictions.eq("patient.personKey",new Long(patient.getKey().longValue())))
                       .add(Restrictions.ilike("placerOrderNbr",placerIdentifier.getIdValue()));
        if (placerIdentifier.getIdentifierDomain()==null)
           criteria.add(Restrictions.isNull("placerorderidentifierdomain.assigningAuthorityId"));
        else
           criteria.add(Restrictions.eq("placerorderidentifierdomain.assigningAuthorityId",
                                placerIdentifier.getIdentifierDomain().getAssigningAuthorityID()));




Full stack trace of any exception that occurs:
Code:
Caused by: org.hibernate.QueryException: could not resolve property: placerorderidentifierdomain.assigningAuthorityId of: myhibernate.valueobjects.Orders




Mapping document

1) Orders class : Orders.hbm.xml
Code:
    <class name="Orders" table="ORDERS">
        <id name="ordersKey" column="ORDERS_KEY" type="java.lang.Long">
            <generator class="native"/>
        </id>

        <property name="placerOrderNbr" column="PLACER_ORDER_NBR" type="string" />
        <many-to-one name="placerorderidentifierdomain" column="PLACER_ORDER_NBR_IDD" class="Identifierdomain" />

        <many-to-one name="patient" column="PATIENT_KEY" class="Patient" />

</class>


2) Identifierdomain class : Identifierdomain.hbm.xml
Code:
    <class name="Identifierdomain" table="IDENTIFIERDOMAIN">
        <id name="identifierdomainKey" column="IDENTIFIERDOMAIN_KEY" type="java.lang.Long">
            <generator class="native"/>
        </id>
        <property name="assigningAuthorityId" column="ASSIGNING_AUTHORITY_ID" type="string" />
</class>


Top
 Profile  
 
 Post subject:
PostPosted: Fri Mar 17, 2006 1:29 pm 
Regular
Regular

Joined: Tue Mar 07, 2006 11:18 am
Posts: 54
Location: Berlin
You should create an alias for each join in your query, like this...

Code:
criteria.createAlias("placeDomain","placerorderidentifierdomain");
criteria.add(Restrictions.isNull("placeDomain.assigningAuthorityId"));


simon


Top
 Profile  
 
 Post subject:
PostPosted: Fri Mar 17, 2006 1:31 pm 
Regular
Regular

Joined: Wed Mar 08, 2006 2:07 am
Posts: 50
Location: Bangalore
thanx ... i had found that some time back .. anyways thanx


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.