mybatis调用Oracle存储过程(给出无参、入参、出参调用

2024-01-08  本文已影响0人  用户zzzzzz

以下是mybatis调用Oracle存储过程的几种情况的详细使用方法:

  1. 无参存储过程调用: 在Mapper.xml文件中,使用select标签,并设置statementType="CALLABLE",不需要指定参数类型。
<select id="spNoParam" statementType="CALLABLE">
    {call sp_no_param()}
</select>
  1. 入参存储过程调用: 在Mapper.xml文件中,使用select标签,并设置statementType="CALLABLE",指定参数类型和参数值。
<select id="spWithParam" statementType="CALLABLE" parameterType="map">
    {call sp_with_param(#{param1, jdbcType=VARCHAR, mode=IN})}
</select>
  1. 出参存储过程调用: 在Mapper.xml文件中,使用select标签,并设置statementType="CALLABLE",指定参数类型和参数模式为OUT。
<select id="spWithOutParam" statementType="CALLABLE" parameterType="map">
    {call sp_with_out_param(#{result, jdbcType=VARCHAR, mode=OUT})}
</select>
  1. 入参和出参存储过程调用,并获取出参结果: 在Mapper.xml文件中,使用select标签,并设置statementType="CALLABLE",指定参数类型和参数模式为IN和OUT,同时设置返回结果。
<select id="spWithInOutParam" statementType="CALLABLE" parameterType="map">
    {call sp_with_in_out_param(
        #{param1, jdbcType=VARCHAR, mode=IN},
        #{result, jdbcType=VARCHAR, mode=OUT}
    )}
</select>
  1. 结果集存储过程调用: 在Mapper.xml文件中,使用select标签,并设置statementType="CALLABLE",指定参数类型和参数模式为IN,同时设置返回结果集。
<select id="spWithResultSet" statementType="CALLABLE" parameterType="map" resultType="com.example.Result">
    {call sp_with_result_set(#{param1, jdbcType=VARCHAR, mode=IN})}
</select>
上一篇下一篇

猜你喜欢

热点阅读