标签:where final 恢复 访问 操作 [] 存在 tran nts
定义:
数据库事务(简称:事务)是数据库管理系统执行过程中的一个逻辑单位,由一个有限的数据库操作序列构成。
connection.setAutoCommit(false);开启事务
connection.rollback() 回滚事务
connect.commit() 提交事务
案例代码:
import cn.guangming.demo.JdbcUtils; import java.sql.Connection; import java.sql.PreparedStatement; import java.sql.SQLException; /** * 模拟银行的转账业务 * */ public class Transcation { public static void main(String[] args) { Connection connection=null; PreparedStatement preparedStatement=null; try { //1.获取连接 connection = JdbcUtils.getConnection(); //2.开启事务 connection.setAutoCommit(false); //3.获取preparedstatement preparedStatement = connection.prepareStatement("UPDATE coount SET money =money-? WHERE sname=?"); //4.使用preparedstatement两次更新操作 preparedStatement.setDouble(1,500); preparedStatement.setString(2,"dudu"); preparedStatement.executeUpdate(); System.out.println(11/0); preparedStatement=connection.prepareStatement("UPDATE coount SET money =money-? WHERE sname=?"); preparedStatement.setDouble(1,500); preparedStatement.setString(2,"jiujiu"); preparedStatement.executeUpdate(); //提交事务 connection.commit(); System.out.println("转账成功"); } catch (Exception e) { //事务回滚 try { connection.rollback(); } catch (SQLException e1) { e1.printStackTrace(); } System.out.println("转账失败"); }finally { //释放资源 JdbcUtils.close(preparedStatement,connection); } } }
标签:where final 恢复 访问 操作 [] 存在 tran nts
原文地址:https://www.cnblogs.com/duguangming/p/10651514.html