学习心得

//要将存储过程名大写,否则错误
                  String procTest1="p_getemp".toUpperCase();
System.out.println("存储过程名:"+procTest1);
// dbtool=new DBTool();
List params1=new ArrayList();
System.out.println("--输入参数7788前--");
//如果输入的参数,Integer.valueOf(i)无效,用
                       //new Integer(i)

params1.add(new Integer(7788));
dbtool.executeProcedure(procTest1, params1);
System.out.println(" 执行存储过程--》"+procTest1+"  参数---》"+params1);

你可能感兴趣的:(学习心得)