美文网首页
mybatis调用Oracle存储过程(给出无参、入参、出参调用

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

作者: 用户zzzzzz | 来源:发表于2024-01-08 08:36 被阅读0次

    以下是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>
    

    相关文章

      网友评论

          本文标题:mybatis调用Oracle存储过程(给出无参、入参、出参调用

          本文链接:https://www.haomeiwen.com/subject/gdpnndtx.html