程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> j2ee-在s2sh中遇到的問題 初學者

j2ee-在s2sh中遇到的問題 初學者

編輯:編程綜合問答
在s2sh中遇到的問題 初學者

我就是敲了這些代碼之後報的錯誤

private String getCondition() {
String whereHQL = "";
if (messagestatisticsForm.getSendMobileID() != null) {
whereHQL = " where sendMobileID="
+ messagestatisticsForm.getSendMobileID();
}

    if (!StringUtils.isBlank(messagestatisticsForm.getCreateTimeStart())) {
        if ("".equals(whereHQL)) {
            whereHQL = " where createTimeStart>='"
                    + messagestatisticsForm.getCreateTimeStart() + "'";
        } else {
            whereHQL = " and createTimeStart>='"
                    + messagestatisticsForm.getCreateTimeStart() + "'";
        }

    }

    if (!StringUtils.isBlank(messagestatisticsForm.getCreateTimeEnd())) {
        if ("".equals(whereHQL)) {
            whereHQL = " where createTimeEnd<='"
                    + messagestatisticsForm.getCreateTimeEnd() + "'";
        } else {
            whereHQL = " and createTimeEnd<='"
                    + messagestatisticsForm.getCreateTimeEnd() + "'";
        }

    }

    // whereHQL += " order by id";
    return whereHQL;
}

控制台中報的錯誤
ERROR [org.hibernate.hql.PARSER] - line 1:56: unexpected token: and

最佳回答:


hql語句拼錯了啊。。

感覺應該是

else {
        whereHQL = " and createTimeStart>='"
                + messagestatisticsForm.getCreateTimeStart() + "'";
    }

這句或許該改成

whereHQL+=" and createTimeStart>='"
                + messagestatisticsForm.getCreateTimeStart() + "'";

具體哪裡拼錯了你調試一下很容易看到。。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved