在使用Hibernate的this.getSession().createSQLQuery的两个类型:
其中的select count(*) from plan 中,其接收类型需要用BigInteger来接收,用其他的都会报类型不能强转
而其中的select sum(planCount) from plan 中其类型为number,其类型在java中也是number接收,其他的也均会报错。
(以上数据库环境为mysql)
在使用Hibernate的this.getSession().createSQLQuery的两个类型:
其中的select count(*) from plan 中,其接收类型需要用BigInteger来接收,用其他的都会报类型不能强转
而其中的select sum(planCount) from plan 中其类型为number,其类型在java中也是number接收,其他的也均会报错。
(以上数据库环境为mysql)