【资料图】
1、第一步:找到procedures,右键新建 第二步:在name中输入存储过程名字(这里输入的就是你以后需要调用的名字),parameters后是参数,在里面定义参数的类型。
2、 第三步:编写存储过程语句。
3、4 第四步: 存储过程调用 CallableStatementcs=conn.divpareCall("{callmymd_gis_pro(?,?,?,?,?)}"); //1代表第一个参数,setint表示参数类型是int型 cs.setInt(1,188); cs.setInt(2,12); cs.setInt(3,12); ...... //执行Oracle存储过程 cs.execute();。
本文到此分享完毕,希望对大家有所帮助。
关键词:
热门推荐
最新资讯