mybatis 调用 Oracle 存储过程并接受返回值的示例代码

目录

存储过程

mapper.xml

dao层

调用

存储过程 PROCEDURE P_TEST_MYBATIS(iv_ins1 IN VARCHAR2, --id iv_ins2 IN VARCHAR2, --no ov_res OUT number --提示信息 ) IS BEGIN ov_res := 0; select count(1) into ov_res from jc_zhiydoc t where t.zhiy_id = iv_ins1 and t.zhiy_no = iv_ins2; EXCEPTION WHEN OTHERS THEN RAISE; END; mapper.xml

这里我是在pkg_ck_task包下面的存储过程

<select id="exec" statementType="CALLABLE"> call pkg_ck_task.P_TEST_MYBATIS( #{iv_ins1}, #{iv_ins2}, #{ov_res,jdbcType=INTEGER,mode=OUT} ) </select> dao层 void exec(Map<String,Object> params); 调用 public int exec(){ Map<String,Object> map = new HashMap<>(); map.put("iv_ins1","ZIY00007709"); map.put("iv_ins2","0103"); mapper.exec(map); int res = (int)map.get("ov_res"); return res; }

结果:

到此这篇关于mybatis 调用 Oracle 存储过程 并接受返回值 _的文章就介绍到这了,更多相关mybatis 调用 Oracle 存储过程内容请搜索易知道(ezd.cc)以前的文章或继续浏览下面的相关文章希望大家以后多多支持易知道(ezd.cc)!

推荐阅读