-->
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: ClassCastException bei uniqueResult
PostPosted: Wed Sep 24, 2008 4:45 am 
Newbie

Joined: Wed Sep 24, 2008 4:39 am
Posts: 3
Hallo Leute,

ich bin noch etwas frisch auf dem Gebiet Hibernate und hab ein kleines Problem.
Ich habe eine Criteria auf meine DB gesetzt und wollte über uniqueResult einen String auslesen und übergeben. Jetzt bekomme ich aber ständig eine ClassCastException. Ich sehe aber auch nirgends den fehler. Wär super wnn mir da jemand weiter helfen könnte. Hier mein Code:

Code:
public static String getMitarbeiterId(String projektId, String projekt) {
        Session session = HibernateUtil.getCurrentSession();
        Criteria c = session.createCriteria(ProjektPlaner.class);
        c.add(Restrictions.eq("id", projektId));
        c.add(Restrictions.eq("projekt", projekt));
        c.add(Restrictions.eq("planer", Boolean.TRUE));
        c.setMaxResults(1);
       
        return (String) c.uniqueResult();
       
       
    }


Top
 Profile  
 
 Post subject:
PostPosted: Wed Sep 24, 2008 7:31 am 
Newbie

Joined: Sun Sep 21, 2008 9:49 am
Posts: 5
hi,

aus dem uniqueResult komm ein ProjektPlaner raus und kein String

Gruß


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.