-->
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: Abfrage aller Nachrichten eines Users
PostPosted: Sat May 26, 2007 10:21 am 
Newbie

Joined: Wed May 16, 2007 9:55 am
Posts: 8
Hallo Gemeinde,

ich habe folgendes Problem. Und zwar möchte ich alle Nachrichten eines Nutzer abfragen. Zum einen weiß ich nicht genau, wie ich die Abfrage schreiben muss, weil mir die Syntax nicht ganz klar ist. Hier mein Versuch:

Code:
   public List getAllMitteilungen(Integer nutzer_id) {
       Query abfrage = HibernateUtil.getSession().createQuery("from
             Mitteilungen mitteilungen where mitteilung.nutzer_id=:nutzer_id");;
        
             abfrage.setInteger("nutzer_id",nutzer_id);
        return abfrage.list();
   }


...und zum anderen wie ich das Result dann verarbeiten kann?
Dachte mir irgendwas in der Art:

Code:
              //Aufruf der Methode zum Testen übergebe ich die Id 1
               list = new MitteilungenDAO().getAllMitteilungen(1);
      
               //Durchiterieren des Results
          for (Iterator iter = list.iterator(); iter.hasNext();){
         Mitteilungen mitteilung = (Mitteilungen) iter.next();
      }


Wäre für Tipps und Anregungen sehr dankbar ;-)


Top
 Profile  
 
 Post subject: Fehler
PostPosted: Sat May 26, 2007 1:46 pm 
Newbie

Joined: Wed May 16, 2007 9:55 am
Posts: 8
keine Eingabe!


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.