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

mybatis批量插入,批量更新 com.mysql.jdbc.exceptions.MySQLSyntaxErrorException

时间:2017-11-16 18:45:44      阅读:137      评论:0      收藏:0      [点我收藏+]

标签:foreach   error   update   属性   als   for   multi   test   generate   

1,批量插入配置
<insert id="novel.insertBatch" parameterType="java.util.List"  useGeneratedKeys="false">
    INSERT INTO t_novel (
        `name`
    ) values
    <foreach collection="list" item="item" index="index" separator="," >
    (
        #{item.name},
    )
    </foreach>
</insert>


2,批量更新配置
<update id="novel.updateBatch" parameterType="java.util.List">
    <foreach collection="list" item="item" index="index" separator=";">
        UPDATE t_novel
        set
        updateTime=NOW()
        <if test="item.name != null">
            ,`name` = #{item.name}
        </if>
        WHERE id = #{item.id}
    </foreach>
</update>

  


3,重要,重要,重要
链接属性里面追加
allowMultiQueries=true
否则抛出com.mysql.jdbc.exceptions.MySQLSyntaxErrorException异常

mybatis批量插入,批量更新 com.mysql.jdbc.exceptions.MySQLSyntaxErrorException

标签:foreach   error   update   属性   als   for   multi   test   generate   

原文地址:http://www.cnblogs.com/lckblog/p/7845257.html

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