jdbc使用prepareStatement实现简单的转账功能


public class BaseDao {
Connection con ;
PreparedStatement pt ;
public void transfer(int eid1,int eid2, double amount){
int result1 = 0;
int result2 = 0;
String sql1 = "update employee set money = money - ? where eid = ?";
String sql2 = "update employee set money = money + ? where eid = ?";
try {
con = MyConnection.getCon();
con.setAutoCommit(false);
pt = con.prepareStatement(sql1);
pt.setDouble(1, amount);
pt.setInt(2, eid1);
result1 = pt.executeUpdate();
if(result1 != 1){
con.rollback();
System.err.println("没有"+eid1+"这个id");
return;
}
System.out.println(result1);
pt = con.prepareStatement(sql2);
pt.setDouble(1, amount);
pt.setInt(2, eid2);

System.out.println(result2);
result2 = pt.executeUpdate();
if(result2 != 1){
con.rollback();
System.err.println("没有"+eid2+"这个id");
return;
}
con.commit();
} catch (Exception e) {
try {
                con.rollback();
            } catch (SQLException e1) {
                System.out.println("回滚事务异常!");
                throw new RuntimeException(e);
            }
            System.out.println("数据库访问异常!");
            throw new RuntimeException(e);
}finally{
try {
                if(pt!=null){
                    pt.close();
                }
                if(con!=null){
                    con.close();
                }
            } catch (SQLException e) {
                e.printStackTrace();
            }
}
}

}



评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值