SQL事务

Posted li33的博客

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SQL事务相关的知识,希望对你有一定的参考价值。

JDBC实现事务(transaction)

1.事务的开启connection.setAutoCommit(false);

2.中间语句是事务的执行语句

3.事务的提交connection.commit();

package JDBCTest;

import JDBCTest.utils.JdbcUtils;

import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;

public class TransactionTest {
    public static void main(String[] args) {
        Connection connection = null;
        PreparedStatement preparedStatement = null;
        ResultSet resultSet = null;

        try {
            connection = JdbcUtils.getConnection ();
            //关闭数据库的自动提交,会自动开启事务
            connection.setAutoCommit (false);//开启事务
            String sql1 = "update account set money=money-400 where name=‘A‘";
            preparedStatement = connection.prepareStatement (sql1);
            preparedStatement.executeUpdate ();
            String sql2 = "update account set money=money+400 where name=‘B‘";
            preparedStatement = connection.prepareStatement (sql2);
            preparedStatement.executeUpdate ();

            connection.commit ();//提交事务
            System.out.println ("成功!");
        } catch (SQLException e) {
            e.printStackTrace ();
        } finally {
            JdbcUtils.release (connection,preparedStatement,null);
        }
    }
}
create table account
(
    name  varchar(10) null,
    money int         null,
    id    int auto_increment
        primary key
);

以上是关于SQL事务的主要内容,如果未能解决你的问题,请参考以下文章

BottomNavigationView 滞后于片段事务

理解片段事务期间片段的生命周期方法调用

提交带有全屏片段的片段事务

使用 OnItemClickListener 列出视图片段到片段事务

Android中的片段事务问题

sql sql里面的代码片段