记一次 Oracle 批量插入

2021/10/19 2:12:45

本文主要是介绍记一次 Oracle 批量插入,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

oracle与mysql不同,不能使用常规方式进行批量插入

<insert id="saveInterfaveList">
        INSERT ALL
        <foreach collection="list" item="interfaceList">
            INTO INTERFACE_LIST(ID,PROJECT_ID,INTERFACE_CODE,REQUEST_SYS,RESPONSE_SYS,INTERFACE_MODE,
                                DESCRIPTION,DATA_FLOW,PROTOCOL,INTERFACE_STATUS,PRD_TIME,REMARKS)
            VALUES (#{interfaceList.id,jdbcType=VARCHAR},
                #{interfaceList.projectId,jdbcType=VARCHAR},
                #{interfaceList.interfaceCode,jdbcType=VARCHAR},
                #{interfaceList.requestSys,jdbcType=VARCHAR},
                #{interfaceList.responseSys,jdbcType=VARCHAR},
                #{interfaceList.interfaceMode,jdbcType=VARCHAR},
                #{interfaceList.description,jdbcType=VARCHAR},
                #{interfaceList.dataFlow,jdbcType=VARCHAR},
                #{interfaceList.protocol,jdbcType=VARCHAR},
                #{interfaceList.interfaceStatus,jdbcType=VARCHAR},
                #{interfaceList.prdTime,jdbcType=VARCHAR},
                #{interfaceList.remarks,jdbcType=VARCHAR})
        </foreach>
        SELECT * FROM dual
</insert>



这篇关于记一次 Oracle 批量插入的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程