gpt4 book ai didi

java - 在单个线程中运行多个 sql 查询?

转载 作者:行者123 更新时间:2023-12-04 05:47:52 25 4
gpt4 key购买 nike

我正在尝试通过 Java 代码在单个 SQL 服务器线程中运行多个 SQL 查询。我尝试对我的查询使用批处理运行,但看到日志,我的查询在不同的线程中运行。

有没有办法在单个线程下运行我的所有查询?

我为我的查询启用了并发标志,以便读/写操作不会发生冲突并导致异常。

最佳答案

您必须通过关闭 auto commit 来手动处理事务。并制作 commit运行语句后:

connection.setAutoCommit(false);
statement.executeUpdate();
connection.commit();

关于java - 在单个线程中运行多个 sql 查询?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10443389/

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