JDBC调用存储过程

本文介绍了一个使用JDBC通过CallableStatement接口调用存储过程的示例代码。示例展示了如何设置参数并执行存储过程,同时处理了异常情况,并确保了资源的关闭。
 public int addORDelAgentPerson(String strTableID,String strUserID,String strAgentID,String strType)throws Exception{
        Connection conn= null;
        CallableStatement cbst = null;
        ResultSet rs = null;
        String procedure = "{call SP_SetDevolvePerson(?,?,?,?)} ";
        //int count = 0;
        try{
            conn = jbpu.getConnection();
            conn.setAutoCommit(false);
            cbst = conn.prepareCall(procedure);
            cbst.setString(1, strTableID);
            cbst.setString(2, strUserID);
            cbst.setString(3, strAgentID);
            cbst.setString(4, strType);
            //count = cbst.executeUpdate();
            cbst.executeUpdate();
            conn.commit();
            return 1;
        }catch(Exception e){
            conn.rollback();
            e.printStackTrace();
            return 0;
        }finally{
            jbpu.close(rs, cbst, conn);
        }
    }

注:

1、JDBC通过CallableStatement 接口调用存储过程;

2、jbpu是封装好的一个jdbc工具类实例;

3、jdbc传参的起始序号为1;

4、return 0或1,只是标识是否执行成功,也可用其它方式标识。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值