-->
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.  [ 2 posts ] 
Author Message
 Post subject: SQLGrammarException bei where-Bedingung in collection
PostPosted: Sat Jun 03, 2006 3:03 pm 
Newbie

Joined: Wed May 10, 2006 4:58 am
Posts: 10
Hallo,

Ich verwende ein deleted-flag in sämtlichen Tabellen anstatt eines "echten" delete. Dann ist mir aufgefallen dass beim Laden einer Collection auch die "gelöschten" Obejkten mitgeladen werden. Ich bin dann in der Dokumentation auf das where-Attribut gestoßen, bekomme aber eine SQLGrammarException?

Das Problem ist anscheinend dass Hiberate für alle beteiligten Tabellen dynamisch ein Alias vergibt und ich dieses in meiner where-Bedingung nicht kenne. Wie kann ich dann aber auf das deleted-flag der Detailtabelle zugreifen?


Code:
    select
        equipmentp0_.model_id as model3_1_,
        equipmentp0_.text as text1_,
        equipmentp0_.equipment_property_id as equipment1_1_,
        equipmentp1_.id as id3_0_,
        equipmentp1_.title as title3_0_,
        equipmentp1_.ranking as ranking3_0_,
        equipmentp1_.deleted as deleted3_0_,
        equipmentp1_.is_caravan as is5_3_0_,
        equipmentp1_.sys_user_id as sys6_3_0_
    from
        kotep.equipment_value equipmentp0_
    left outer join
        kotep.equipment_property equipmentp1_
            on equipmentp0_.equipment_property_id=equipmentp1_.id
    where
        equipment_property.deleted = 0
        and equipmentp0_.model_id=?



Viele Grüße,
Chris


Top
 Profile  
 
 Post subject:
PostPosted: Wed Jun 07, 2006 4:06 am 
Beginner
Beginner

Joined: Fri May 19, 2006 11:34 am
Posts: 29
Hi,

das SQL-Statement schaut aus, als wenn du es aus dem LOG kopiert hast, und dann wo einfügst?

Wenn du eine normale Abfrage stellst, dann solltest du folgende Syntax verwenden:

Code:
session.createQuery("from TableName t where t.deleted = 0 ")


Leider hast du nicht angegeben, wo und wann du deine SQL-Anfrage stellst.

So denn
Kai


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