我创建了一个函数来获取一些与日期匹配的行。但是该功能未相应执行。我怀疑存在一些语法问题。请帮助我找到问题。 DaoImpl函数如下:
public List<ReportSewing> getReport(Date reportDate) {
return session.getCurrentSession()
.createQuery("from ReportSewing where DATE(reportDate) = (reportDate)")
.list();
}
答案 0 :(得分:0)
似乎您忘记了传递查询参数。
public List<ReportSewing> getReport(Date reportDate) {
return session.getCurrentSession()
.createQuery("from ReportSewing where DATE(reportDate) = :reportDate")
.setParameter("reportDate", reportDate)
.list();
}