-->
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: Same date/time returns nothing
PostPosted: Mon Jun 06, 2011 4:33 pm 
Newbie

Joined: Mon Jun 06, 2011 3:49 pm
Posts: 1
Executing the SQL below returns 1 result.
Code:
select count(*) as y0_ from myTable this_ where this_.myDate between to_date('2010-10-21 23:15:12', 'yyyy-mm-dd HH24:MI:SS') and to_date('2010-10-21 23:15:12', 'yyyy-mm-dd HH24:MI:SS')


My hibernate code is
Code:
DetachedCriteria criteria = DetachedCriteria.forClass(myClass.class).add(Restrictions.between("myDate", date1, date1));


translates to be

Code:
select count(*) as y0_ from myTable this_ where this_.myDate between ? and ?


date1 = 2010-10-21 23:15:12

The SQL above returns count 0. Is this a bug or am I doing something wrong?


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.