-->
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: need help on serach hql query
PostPosted: Tue Aug 07, 2007 9:18 am 
Newbie

Joined: Tue Mar 27, 2007 6:14 am
Posts: 4
the following hql query with searchText parameter seraching for match case only.

String HQL = from MyTable n where n.title like :searchText

session.createQuery(HQL).setParameter("searchText","%"+searchFilter.getSearchText()+"%");


can some body help as how to write a query that seraches for both uppercase & lower case match


Top
 Profile  
 
 Post subject:
PostPosted: Tue Aug 07, 2007 9:46 am 
Expert
Expert

Joined: Fri Jul 13, 2007 8:18 am
Posts: 370
Location: london
String HQL = from MyTable n where lower(n.title) like :searchText

session.createQuery(HQL).setParameter("searchText","%"+searchFilter.getSearchText().toLowerCase()+"%");


Top
 Profile  
 
 Post subject:
PostPosted: Tue Aug 07, 2007 10:14 am 
Newbie

Joined: Tue Mar 27, 2007 6:14 am
Posts: 4
it gets all upper case words from databse when input given in lower , but
it won't get lower case words from databse when input given in upper ,


Top
 Profile  
 
 Post subject:
PostPosted: Tue Aug 07, 2007 10:26 am 
Expert
Expert

Joined: Fri Jul 13, 2007 8:18 am
Posts: 370
Location: london
that's why I added toLowerCase() to your search text


Top
 Profile  
 
 Post subject:
PostPosted: Tue Aug 07, 2007 11:26 am 
Newbie

Joined: Tue Mar 27, 2007 6:14 am
Posts: 4
thatmikewilliams wrote:
that's why I added toLowerCase() to your search text


Thanks it solved the problem ......


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.