zoukankan      html  css  js  c++  java
  • JDBC: Transactions

     

    A transaction is a set of actions to be carried out as a single, atomic action. Either all of the actions are carried out, or none of them are.

    The classic example of when transactions are necessary is the example of bank accounts. You need to transfer $100 from one account to the other. You do so by subtracting $100 from the first account, and adding $100 to the second account. If this process fails after you have subtracted the $100 fromt the first bank account, the $100 are never added to the second bank account. The money is lost in cyber space.

    To solve this problem the subtraction and addition of the $100 are grouped into a transaction. If the subtraction succeeds, but the addition fails, you can "rollback" the fist subtraction. That way the database is left in the same state as before the subtraction was executed.

    You start a transaction by this invocation:

    connection.setAutoCommit(false);
    

    Now you can continue to perform database queries and updates. All these actions are part of the transaction.

    If any action attempted within the transaction fails, you should rollback the transaction. This is done like this:

    connection.rollback();
    

    If all actions succeed, you should commit the transaction. Committing the transaction makes the actions permanent in the database. Once committed, there is no going back. Committing the transaction is done like this:

    connection.commit();
    

    Of course you need a bit of try-catch-finally around these actions. Here is a an example:

    Connection connection = ...
    try{
        connection.setAutoCommit(false);
    
        // create and execute statements etc.
    
        connection.commit();
    } catch(Exception e) {
        connection.rollback();
    } finally {
        if(connection != null) {
            connection.close();
        }
    }
    

    Here is a full example:

    Connection connection = ...
    try{
        connection.setAutoCommit(false);
    
    
        Statement statement1 = null;
        try{
            statement1 = connection.createStatement();
            statement1.executeUpdate(
                "update people set name='John' where id=123");
        } finally {
            if(statement1 != null) {
                statement1.close();
            }
        }
    
    
        Statement statement2 = null;
        try{
            statement2 = connection.createStatement();
            statement2.executeUpdate(
                "update people set name='Gary' where id=456");
        } finally {
            if(statement2 != null) {
                statement2.close();
            }
        }
    
        connection.commit();
    } catch(Exception e) {
        connection.rollback();
    } finally {
        if(connection != null) {
            connection.close();
        }
    }
    
  • 相关阅读:
    通用XML读写和配置(二)
    C++多态中的VPTR
    如何查看Linux操作系统的位数?
    另类获取ORACLE导入导出(imp/exp)数据的进度信息
    成熟是明亮而不刺眼的光辉
    C/C++预处理运算符
    系统设计与规划一点总结
    Linux 任务计划之crontab命令
    linux挂载磁盘阵列
    Linux下JDK的中文显示
  • 原文地址:https://www.cnblogs.com/hephec/p/4562822.html
Copyright © 2011-2022 走看看