云主机测评网云主机测评网云主机测评网

云主机测评网
www.yunzhuji.net

java手动提交事务和自动提交

Java手动提交事务需要使用Connection对象的commit()方法,而自动提交事务则不需要显式调用该方法。

Java手动提交事务

1、使用Connection对象的setAutoCommit()方法关闭自动提交功能

2、执行SQL语句

3、使用Connection对象的commit()方法手动提交事务

4、使用Connection对象的rollback()方法回滚事务

示例代码:

import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.SQLException;
public class ManualTransactionExample {
    public static void main(String[] args) {
        Connection connection = null;
        try {
            // 加载数据库驱动
            Class.forName("com.mysql.jdbc.Driver");
            // 获取数据库连接
            connection = DriverManager.getConnection("jdbc:mysql://localhost:3306/test", "root", "password");
            // 关闭自动提交功能
            connection.setAutoCommit(false);
            // 创建PreparedStatement对象
            PreparedStatement pstmt1 = connection.prepareStatement("UPDATE account SET balance = balance 100 WHERE id = 1");
            PreparedStatement pstmt2 = connection.prepareStatement("UPDATE account SET balance = balance + 100 WHERE id = 2");
            // 执行SQL语句
            pstmt1.executeUpdate();
            pstmt2.executeUpdate();
            // 手动提交事务
            connection.commit();
        } catch (ClassNotFoundException e) {
            e.printStackTrace();
        } catch (SQLException e) {
            try {
                // 发生异常,回滚事务
                connection.rollback();
            } catch (SQLException ex) {
                ex.printStackTrace();
            }
            e.printStackTrace();
        } finally {
            if (connection != null) {
                try {
                    connection.close();
                } catch (SQLException e) {
                    e.printStackTrace();
                }
            }
        }
    }
}

Java自动提交事务

1、使用Connection对象的setAutoCommit()方法开启自动提交功能(默认为true)

2、执行SQL语句,事务会自动提交或回滚,取决于SQL语句是否成功执行

3、不需要手动调用commit()或rollback()方法,系统会自动处理事务的提交和回滚

示例代码:

import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.SQLException;
public class AutoTransactionExample {
    public static void main(String[] args) {
        Connection connection = null;
        try {
            // 加载数据库驱动
            Class.forName("com.mysql.jdbc.Driver");
            // 获取数据库连接
            connection = DriverManager.getConnection("jdbc:mysql://localhost:3306/test", "root", "password");
            // 开启自动提交功能(默认为true)
            connection.setAutoCommit(true);
            // 创建PreparedStatement对象
            PreparedStatement pstmt1 = connection.prepareStatement("UPDATE account SET balance = balance 100 WHERE id = 1");
            PreparedStatement pstmt2 = connection.prepareStatement("UPDATE account SET balance = balance + 100 WHERE id = 2");
            // 执行SQL语句,事务会自动提交或回滚,取决于SQL语句是否成功执行
            pstmt1.executeUpdate();
            pstmt2.executeUpdate();
        } catch (ClassNotFoundException e) {
            e.printStackTrace();
        } catch (SQLException e) {
            e.printStackTrace();
        } finally {
            if (connection != null) {
                try {
                    connection.close();
                } catch (SQLException e) {
                    e.printStackTrace();
                }
            }
        }
    }
}
打赏
版权声明:主机测评不销售、不代购、不提供任何支持,仅分享信息/测评(有时效性),自行辨别,请遵纪守法文明上网。
文章名称:《java手动提交事务和自动提交》
文章链接:https://www.yunzhuji.net/internet/178558.html

评论

  • 验证码