-->
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: createQuery String Parameter mit Sonderzeichen '_' ??
PostPosted: Mon Aug 28, 2006 8:36 am 
Newbie

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

ich (HybernateNewbie) habe eine allgemeine Frage. Ich verwende


User user = (User) session.createQuery("select login from User as u where u.login = ?").setString(0, login).uniqueResult();

das funktioniert einwandfrei. Nur ist es in meinem DataDictionary erlaubt im Login auch den unterstrich '_' zu verwenden. Enthällt die Variable login einenUnterstrich dann wirft Hybernate einen Fehler.

FRAGE: Kann ich? Und wenn wie? Sonderzeichen wie den Unterstrich in HQL einbauen? Oder ist das nur mit NativeSQL Anfragen möglich.


Top
 Profile  
 
 Post subject:
PostPosted: Mon Aug 28, 2006 9:00 am 
Newbie

Joined: Mon Aug 28, 2006 8:13 am
Posts: 6
Sry habe es selbst gefunden. Lag wohl nicht direkt am "_" ... ging mit anderen Strings auf einmal auch net mehr. :-|

Nun mache ich es so

user = (User) session.createCriteria(User.class).add(Restrictions.like("login",login)).uniqueResult();

das funktioniert auch mit Sonderzeichen gut. :))

Bye


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.