setDate 方法用于绑定映射类型为 Date 的参数。
参数说明:
返回值:Query对象。
使用顺序占位符方式实现查询生日为 1998-11-17 的用户信息,关键代码如下:
String hql = "from UserForm where birthday=?"; //定义查询HQL语句
Query query = session.createQuery(hql); //执行查询语句,获取Query对象
query.setDate(0,Date.valueOf("1998-11-17")); //绑定HQL语句参数
参数说明:
返回值:Query对象。
使用引用占位符方式实现查询生日为 1998-11-17 的用户信息,关键代码如下:
String hql = "from UserForm where birthday=:birthday"; //定义查询HQL语句
Query query = session.createQuery(hql); //执行查询语句获取Query对象
query.setDate("birthday",Date.valueOf("1998-11-17")); //设置HQL语句请求参数值
list = query.list(); //执行HQL语句