我需要編寫一個查詢來獲得一定範圍的時間之間的對象,目前查詢是這樣的:HQL(休眠)日期和時間範圍內的比賽
Timestamp from = ...
Timestamp to = ...
getHibernateTemplate().find("from " + Person.class.getName() + " ml where ml.lastModifiedOn>="+from.toString()+" and m1.lastModifiedOn<=" + to.toString());
然而,對於這種不列入工作明顯的原因。我該如何格式化時間戳才能被查詢接受。
org.springframework.orm.hibernate3.HibernateQueryException:意外的標記:16附近線1,列123 [從人毫升其中ml.lastModifiedOn> = 2010-02-12 16:00:21.292和m1.lastModifiedOn
試YYYY-MM-DD HH:MM:SS – Inv3r53 2010-05-19 11:27:47
不起作用。 。 – Saky 2010-05-19 11:53:04