JDBC转账

public class JBDCzhuanzhang {
    public static void main(String[] args) {
        Connection connection=null;
        PreparedStatement preparedStatement=null;
//        zs转给ls 100元
        try {
            //第一步:得到数据库链接
            connection= JDBCUtils.getConnection();
            //第二步:开启事务
            connection.setAutoCommit(false);
            //第三步:准备好转账的SQL语句
            String sql1="update user set money=money+? where id=?";
//            String sql2="update account set money=money+100 where id=?";
//            第四步:加载SQL
//            zs转出100
            preparedStatement=connection.prepareStatement(sql1);
            preparedStatement.setDouble(1,-100);
            preparedStatement.setInt(2,1);
            preparedStatement.executeUpdate();
//            ls转入100
            preparedStatement=connection.prepareStatement(sql1);
            preparedStatement.setDouble(1,100);
            preparedStatement.setInt(2,2);
            preparedStatement.executeUpdate();
//            第五步:提交事务
            connection.commit();
        } catch (Exception e) {
            try {
                connection.rollback();
            } catch (SQLException ex) {
                throw  new RuntimeException(ex);
            }
        }finally {
            try {
//                第六步:关闭流
                JDBCUtils.close(null,preparedStatement,connection);
            } catch (SQLException e){
                throw new RuntimeException(e);
            }
        }
    }
}

数据库

运行 

 运行完运行成这样就是成功了

成功后到数据库刷新

这样转账就完成了 

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值