gpt4 book ai didi

java - 更新查询执行但不使用 hibernate 更新表

转载 作者:行者123 更新时间:2023-12-01 12:57:57 25 4
gpt4 key购买 nike

我有一个包含 5 个部分(id、问题、结果)的数据库,我想通过更新查询和 hibernate 来更改我的数据库。

我试过了

public void update()
{
try
{
Session session = getSession();
Transaction tx = session.beginTransaction();

Query query = getSession().createQuery("update Nodes set question = 'test updating' where id = 1" );

tx.commit();
session.close();

我没有错误,在控制台中我有

Infos: Hibernate: update node set question='test updating' where id=1

Hibernate 执行我的更新没有错误,但我的数据库中没有,为什么?

谢谢

最佳答案

试试这个

public void update()
{
try
{
Session session = getSession();
Transaction tx = session.beginTransaction();

Query query = getSession().createQuery("update Nodes set question = 'test updating' where id = 1" );

query.executeUpdate(); //add this line
session.commit();
session.close();

希望这可以帮助您解决问题

关于java - 更新查询执行但不使用 hibernate 更新表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23742389/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com