-->
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: createQuery() -> createCriteria()
PostPosted: Mon Nov 06, 2006 8:59 am 
Newbie

Joined: Mon Aug 28, 2006 8:13 am
Posts: 6
Hi

meine Frage wie wandle ich diese HQL-Query in ein Criteria Konstrukt.

Code:
stations = (ArrayList) HibernateUtil.getSession()
                     .createQuery("from Station as s where  s.key like ? order by s.key")
                     .setString(0, "%"+key+"%")
                     .list();


Zunächst einmal ganz simpel.

Code:
stations = (ArrayList) HibernateUtil.getSession()
                     .createCriteria(Station.class)
                     .add(Restrictions.like("key", "%"+key+"%"))
                     .list();         


Nur gibt es hier ein Problem. Das Property key ist vom Typ Integer und somit entsteht hier ein Formatfehler. Meine Frage ist nun, wie in einem Criteria Ausdruck den Vorteil von like im ersten Codebeispiel nutzen. Denn dort wird bei der Eingabe von 100 auch die Zeile mit dem key=1100 oder 1001 angezeigt. Oder ist dies mit Criterias nicht möglich??

Beste Grüße und Dank im Voraus


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