-->
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: Problem mit dynamisch zusammengesetzter Criteria Abfrage
PostPosted: Wed Oct 01, 2008 4:45 am 
Moin,
ich möchte mir mit Criteria eine Abfrage dynamisch anhand des Inhalts verschiedener Variablen zusammenstellen.
Also, Variable abfragen, an Criteria basteln, nächste if Abfrage, wieder neu basteln und so weiter.
Jetzt habe ich einen Vektor mit Integer Werten (IDs). Diese möchte ich mittels ODER Verknüpfung abfragen. Das Problem ist, die liegen in einer anderen Tabelle als die, auf die ich die Criteria normalerweise loslasse.
Konkret geht es um Anlagen und Hallen. Ich suche alle Anlagen, die in den Hallen mit der ID x, y oder z stehen.
Bis jetzt hab ichs mal folgendermaßen versucht:
Code:
Criteria criteria = session.createCriteria(db.Anlage.class);
for (int i = 0; i < hallenids.size(); i++) {
   criteria.createCriteria("halle").add(Restrictions.eq("idHalle", Integer.parseInt(hallenids[i]);
}

Da komme ich allerdings auf den Bug, dass man eine Tabelle nicht zweimal für eine Criteria Abfrage verwenden kann.
Wenn ich jetzt folgendes mache:
Code:
Criteria criteria = session.createCriteria(db.Anlage.class);
for (int i = 0; i < hallenids.size(); i++) {
   if (i == 0) {
      criteria.createCriteria("halle");
   }
   criteria.add(Restrictions.eq("idHalle", Integer.parseInt(hallenids[i]);
}

Dann gibts eine Exception, dass idHalle nicht in Anlage bekannt ist. Wie kann ich mir jetzt mittels einer For Schleife die Criteria Abfrage zusammenbasteln? Hab eigentlich wenig Lust, das in HQL zu machen, klar, das ginge auch, aber so ist mir das lieber.


Top
  
 
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.