这里,我有一个工具类HibernateUtil,里面有一个方法
public static void executeUpdate(String hql,String[] parameters){
Session s=null;
Transaction ts=null;
try {
s=openSession();
ts=s.beginTransaction();
Query query=s.createQuery(hql);
if(parameters!=null && parameters.length>0){
for(int i=0;i<parameters.length;i++){
query.setString(i,parameters[i] );
}
}
query.executeUpdate();
ts.commit();
} catch (Exception e) {
e.printStackTrace();
throw new RuntimeException(e.getMessage());
}finally{
if(s!=null && s.isOpen()){
s.close();
}
}
}
那么我在main函数里怎么调用呢?
目标是更改Student表中的,计算机系学生的年龄全加1;
再写上对应的hql,应该就可以了吧。不过,要确保数据库连接那方面没问题。public static void mian(String[] args) {
executeUpdate(hql,parameters);
}