-->
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: How to create a query with attribute length > 0
PostPosted: Thu Apr 02, 2009 1:57 am 
Newbie

Joined: Thu Mar 05, 2009 2:50 am
Posts: 14
I want to create a HQL Query which can take the Class Attribute Length > 0 condition. like given below how can i do it.

Query query = session.createQuery("from EmailQueue eq where eq.postingEmail.length()>0");
List list = query.list();
Iterator itr = list.iterator();
while(itr.hasNext()){
EmailQueue queue = (EmailQueue)itr.next();
System.out.println(queue.getCampaigns().getCampaignName()+":"+queue.getEmailSubject()+":"+queue.getPostingEmail());
}

_________________
Thanks and Regards


Top
 Profile  
 
 Post subject:
PostPosted: Thu Apr 02, 2009 2:13 am 
Expert
Expert

Joined: Wed Mar 03, 2004 6:35 am
Posts: 1240
Location: Lund, Sweden
Try this:

Code:
from EmailQueue eq where length(eq.postingEmail) > 0


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.