I have a Date date= "26/12/2007" which i want to compare with my date in sql: "26/12/2007 12:00:00"
like if i send date "26/12/2007" it should retrieve values against the date in mysql "26/12/2007 12:00:00"
It works if i remove this 12:00:00 ,but if i add 12:00:00 it gives no results
i am using Hibernate Criteria like
criteria.add(Restrictions.like("dateinsql", date));
I tried using
criteria.add(Restrictions.like("dateinsql", date,MatchMode.AnyWhere));
but it only works for String not Date.
Any solutions for that