文章目录
准备工作
- 建表语句
create table account(
id char(36) primary key,
card_id varchar(20) unique,
name varchar(8) not null,
money float(10,2) default 0
) engine=MyISAM;
插入两条数据
create table account(
id char(36) primary key,
card_id varchar(20) unique,
name varchar(8) not null,
money float(10,2) default 0
) engine=MyISAM;
insert into account
values('6ab71673-9502-44ba-8db0-7f625f17a67d','1234567890','张三',1000);
insert into account (id,card_id,name)
values('9883a53d-9127-4a9a-bdcb-96cf87afe831','0987654321','张三');
插入的数据
使用JDBC连接数据库
- 使用JDBC连接数据库开始事物,插入数据
public class Test {
public static void main(String[] args) {
Connection connection = null;
Statement statement = null;
try {
//1、加载JDBC驱动程序
Class.forName("com.mysql.jdbc.Driver");
//2、获取数据库连接
String url="jdbc:mysql://127.0.0.1:3306/test";
connection = DriverManager.getConnection(url, "root", "root");
connection.setAutoCommit(false);//关闭默认自动事务提交
//3、创建Statement实例
statement = connection.createStatement();
//4、执行SQL语句
statement.addBatch("update account set money=money-100 where card_id= '1234567890'");
statement.addBatch("update account money=money+100 where card_id= '0987654321'");
statement.executeBatch();//5、执行语句
connection.commit();//提交事务
} catch (Exception e) {
try {
if(connection != null) {
connection.rollback();//撤销DML操作
}
} catch (SQLException e1) {
e1.printStackTrace();
}
e.printStackTrace();
}finally {
//6、关闭JDBC对象,释放资源
try {
if(statement!=null) {
statement.close();
}
} catch (SQLException e) {
e.printStackTrace();
}
try {
if(connection!=null) {
connection.close();
}
} catch (SQLException e) {
e.printStackTrace();
}
}
}
}
在JDBC中插入第二条数据的时候SQL语句存在语法存在错误,如果MyISAM数据库引擎支持事务就可以回滚,数据库中"zhangsan"对应的两个账号的"money"不会改变,如果不支持回滚的话第一条数据的"money"的值就会变成900,而第二条数据的值仍然为0
java.sql.BatchUpdateException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '=money+100 where card_id= '0987654321'' at line 1
at com.mysql.jdbc.StatementImpl.executeBatch(StatementImpl.java:1067)
at test.test1.Test.main(Test.java:24)
- 数据库中数据并没有回滚,这说明MyISAM并不支持事务。