码迷,mamicode.com
首页 > 数据库 > 详细

Mybatis 针对oracle的批量插入

时间:2014-07-22 00:06:34      阅读:226      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   color   os   文件   

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的批量插入

标签:des   style   blog   color   os   文件   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!