我写了这样的代码来使用 HQL 从数据库中获取数据:
Query qr=sess.createQuery("select i.contract_Vcode,i.installment_date from Installment i where i.vcode=:instalVcode").setParameter("instalVcode", installVcode);
qr.getNamedParameters();
List<Installment> li=null;
li=qr.list();
int coVcode=li.get(0).getContract_Vcode();
据我所知,contract_Vcode
是一个整数。但是当我想运行它时,发生了以下错误:
Error invoking Action using Hibernate Core Session / Transaction injection
java.lang.ClassCastException: [Ljava.lang.Object; cannot be cast to information.Installment
更多关于当我想看到这样的确切元素时,
System.out.println("contract installDate is: "+li.get(0).getContract_Vcode());
发生同样的错误。我该如何解决这个问题?
您目前只查询分期付款的两个部分。如果你想获取整个东西,我希望像这样:
Query qr = sess.createQuery(
"select from Installment as i where i.vcode=:instalVcode")
.setParameter("instalVcode", installVcode);
如果获取多个属性(而不是整个实体(,则只需为结果中的每一行返回一个Object[]
。
因此,您可以使用原始查询,但是:
List<Object[]> li = qr.list();
int coVcode = (Integer) li.get(0)[0]; // 1st column of 1st row