欢迎使用CSDN-markdown编辑器

来源:互联网 发布:pp助手苹果mac 编辑:程序博客网 时间:2024/06/07 03:10

MySql批量UPDAE
这个是必须要写的,不然批量更新会是有错误的
allowMultiQueries=true主要是要加入这个

jdbc:mysql://192.168.0.24:3306/ccs?useUnicode=true&characterEncoding=utf8&allowMultiQueries=true

update代码

    <update id="batchUpdate"  parameterType="java.util.List">          <foreach collection="list" item="item" index="index" open="" close="" separator=";">                update test                 <set>                  test=#{item.test}+1                </set>                where id = #{item.id}         </foreach>    </update>
0 0
原创粉丝点击