Hibernate access HQL 日期时间 Date 与oracle时的区别
由oracle转access后,发现查询某段时间时报错,折腾了一下午了,终于出来了,共享一下:
public ArrayList queryVO_DBSByDate(String findDate00, String findDate24) throws ParseException { // return (ArrayList) super // .queryList("from VO_DBS v where v.cDate between to_date('" // + findDate00 // + "','YYYY-MM-DD HH24:MI:SS') and to_date('" // + findDate24 + "','YYYY-MM-DD HH24:MI:SS')"); return (ArrayList) super .queryList("from VO_DBS v where v.cDate > '"+ findDate00+ "'and v.cDate<'" + findDate24 + "'"); }
以上,注释掉的是使用于oracle的日期段查询,其下面的是适用于ACCESS的。
相关推荐
lklong 2020-11-22
oraclemch 2020-11-06
shilukun 2020-10-10
周嘉笙 2020-11-09
iilegend 2020-10-19
EricRay 2020-10-16
zhuzhufxz 2020-09-16
dataminer 2020-08-17
bfcady 2020-08-16
Hody 2020-08-16
FightFourEggs 2020-08-16
数据库设计 2020-08-16
Seandba 2020-08-16
Omega 2020-08-16
zjyzz 2020-08-16
yanghuatong 2020-08-16
ktyl000 2020-08-16
dbasunny 2020-08-16