关闭数据库连接之前为什么要先设置自动提交为true?

public void close() throws SQLException {

    if (connection != null) {

      resetAutoCommit();

      if (log.isDebugEnabled()) {

        log.debug("Closing JDBC Connection [" + connection + "]");

      }

      connection.close();

    }

  }

上面是mybatis中的JdbcTransaction中的close方法, resetAutoCommit()方法是设置autoCommit=true。

为什么在关闭连接的时候要先设置自动提交为true。


千巷猫影
浏览 498回答 1
1回答
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Java