为了账号安全,请及时绑定邮箱和手机立即绑定

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

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

千巷猫影 2019-03-13 13:10:11
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。
查看完整描述

1 回答

  • 1 回答
  • 0 关注
  • 497 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信