gpt4 book ai didi

java - Jdbc 连接类方法 setAutoCommit() 行为

转载 作者:行者123 更新时间:2023-12-02 02:07:08 26 4
gpt4 key购买 nike

如果我们在 Oracle DB 的 Java 类中使用两次 setAutoCommit(true) 会发生什么。

try{
Connection conn = getConnection();
conn.setAutoCommit(true);
conn.setAutoCommit(true);
}catch (exception ex){
}

最佳答案

来自 Javadoc

If setAutoCommit is called and the auto-commit mode is not changed, the call is a no-op.

因此,如果您使用相同的参数多次调用 setAutoCommit() ,则只会执行第一次调用。所有具有相同参数的后续调用都将被忽略。

关于java - Jdbc 连接类方法 setAutoCommit() 行为,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50610365/

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