首页 > 编程 > JSP > 正文

实例详解Hibernate 修改数据的几个方式

2024-09-05 00:18:31
字体:
来源:转载
供稿:网友

Hibernate是面向对象的操作进行操作数据库,当持久对象在程序中以面向对象的方式操作时,它将自动转换为数据库的操作,今天错新技术频道小编和大家分享实例详解Hibernate 修改数据的几个方式。

Hibernate 修改数据

1.用 HQL方式来更新

在 这里修改 Person 的name 和age 通过 id 标识

Session currentSession = H3Utils.getCurrentSession();  currentSession.beginTransaction();  //创建 HQL   String hqlString = "update Person p set p.name=? , p.age=? where p.id=?";  //构建 Query   Query query = currentSession.createQuery(hqlString);  //设置参数   query.setParameter(0, "小明");  query.setParameter(1, 18);  query.setParameter(2, 1);  //更新  query.executeUpdate();  currentSession.getTransaction().commit();

2 使用 HQL方式来更新

public void updateFunction2() {  Session currentSession = H3Utils.getCurrentSession();  currentSession.beginTransaction();  //创建SQL   String sql = "UPDATE t_person_list SET name='cv',age=2 WHERE id=4" ;  //执行  currentSession.createSQLQuery(sql).executeUpdate();  //提交  currentSession.getTransaction().commit();  }

3 使用 OID方式来更新

 Session currentSession = H3Utils.getCurrentSession();  currentSession.beginTransaction();  Person person = new Person();  person.setId(44);  person.setName("ccb");  person.setAge(90);  currentSession.update(person);  currentSession.getTransaction().commit();
  • 使用 session.update()方法,根据主键去更新数据,如果数据存在,那么就可以更新,如果不存在,抛异常报错
  • 可以使用 session.saveOrUpdate(person);方法,根据主键去更新数据,如果数据存在,那么就可以更新,如果不存在,就执行 insert

上述就是错新技术频道小编给大家介绍的实例详解Hibernate 修改数据的几个方式,希望对大家有所帮助,如有任何问题小编会及时回复大家。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表