首页 > 数据库技术 > 详细

Mybatis 针对oracle的批量插入

时间:2014-07-21 23:39:05      阅读:518      评论:0      收藏:0      [点我收藏+]

xml文件参数对象:

1 public class Columns{
2     private String basedate_code;
3     private String tableName;
4     private String codeDescribeindex;
5     private String codeInfoindex;
6     private String codePymindex;
7     private List<Info> infos;

Dao层方法:

public void bulkInsert(Columns columns);

xml文件配置:

 1 <insert id="bulkInsert" parameterType="Columns">
 2         insert into manager_basedata_info (app_code,basedata_code,item_code,item_name,item_pym,updatetime)
 3         <foreach collection="infos" item="item"  index="index"  separator="UNION">
 4             select 
 5               ‘pc‘,
 6                #{basedate_code,jdbcType=VARCHAR},
 7                #{item.item_code,jdbcType=VARCHAR},
 8                #{item.item_name,jdbcType=VARCHAR},
 9                #{item.item_pym,jdbcType=VARCHAR},
10                sysdate 
11                from dual
12         </foreach>
13     </insert>

Mybatis 针对oracle的批量插入,布布扣,bubuko.com

Mybatis 针对oracle的批量插入

原文:http://www.cnblogs.com/staryy/p/3858768.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!