-->
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.  [ 5 posts ] 
Author Message
 Post subject: Hinzufügen einer ORDER BY bedingung
PostPosted: Fri Aug 18, 2006 8:48 am 
Newbie

Joined: Fri Aug 18, 2006 7:50 am
Posts: 3
Hallo an Alle!

Ich habe Probleme eine ORDER BY bedingung einzufügen wenn ich eine Klasse mit einbinde. Hier der Code:

Code:
public List findAll(Class pClass) throws ObjectNotFoundException {
       List tList = null;
      try {
Session session = HibernateUtil.getSessionFactory().getCurrentSession();
         session.beginTransaction();
         Query tQuery = session.createQuery("FROM "+pClass.getName());
   tList = tQuery.list();
         Hibernate.initialize(tList);
         session.getTransaction().commit();
      } catch (HibernateException e) {
         cLogger.error(e.getMessage());
         throw new ObjectNotFoundException(new CauseDatabaseProblem(null));
      }
        return tList;
    }


Ich möchte lediglich ASC nach Id sortieren lassen.

Kann mir jemand einen Tipp geben wie ich die Bedingung richtig platziere, bekomme bei meinen Versuchen ständig Fehlermeldungen.

Umgebung: Hibernate 3.0, MySQL 3.23, JDBC 3.1, Eclipse 3.2, BEA WLX 9, JDK 1.4.12

Vielen Dank und Schönes WE!

Gruß,
Faisal


Top
 Profile  
 
 Post subject:
PostPosted: Sun Aug 20, 2006 4:37 am 
Expert
Expert

Joined: Tue Dec 07, 2004 6:57 am
Posts: 285
Location: Nürnberg, Germany
Hi,
ich gehe davon aus, dass der pk der Klasse den Property namen id hat...

Dann würde ich folgende query nehmen:

Code:
.....
StringBuffer sb = new StringBuffer();
sb.append("FROM ");
sb.append(pClass.getName());
sb.append(" as pclass order by pclass.id ASC";
Query tQuery = session.createQuery(sb.toString());
.....


Welche Fehlermeldung bekommst Du denn?

_________________
Please don't forget to rate


Top
 Profile  
 
 Post subject:
PostPosted: Mon Aug 21, 2006 6:44 am 
Newbie

Joined: Fri Aug 18, 2006 7:50 am
Posts: 3
Hallo MikePloed!

Vielen Dank für die Antwort!

Dein Tipp hat einwandfrei funktioniert. Die Fehlermeldungen resultierten durch einfache handwerkliche Fehler (vergessene Hochkommata etc.).

Offensichtlich funktioniert es aber auch so:

Code:
Query tQuery = session.createQuery("FROM "+pClass.getName()+" ORDER BY id ASC");


Ich muss das aber noch ordentlich testen...

Gruß,
Faisal


Top
 Profile  
 
 Post subject:
PostPosted: Mon Aug 21, 2006 6:55 am 
Expert
Expert

Joined: Tue Dec 07, 2004 6:57 am
Posts: 285
Location: Nürnberg, Germany
Klar funktioniert Dein Vorschlag auch. Ich finde aber StringBuffer sauberer als String concatenation...

_________________
Please don't forget to rate


Top
 Profile  
 
 Post subject:
PostPosted: Mon Aug 21, 2006 7:18 am 
Newbie

Joined: Fri Aug 18, 2006 7:50 am
Posts: 3
Hallo MikePloed!

Vielen Dank für die Antwort!

Dein Tipp hat einwandfrei funktioniert. Die Fehlermeldungen resultierten durch einfache handwerkliche Fehler (vergessene Hochkommata etc.).

Offensichtlich funktioniert es aber auch so:

Code:
Query tQuery = session.createQuery("FROM "+pClass.getName()+" ORDER BY id ASC");


Ich muss das aber noch ordentlich testen...

Gruß,
Faisal


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