首页 > 代码库 > Mybatis -- 批量更新 -- updateBatch
Mybatis -- 批量更新 -- updateBatch
mysql数据库配置:
数据库连接必须配置:&allowMultiQueries=true并且‘&’ 用&替换
jdbc.url=jdbc:mysql://192.168.10.10:3306/gt_environ?characterEncoding=utf8&connectTimeout=1000&allowMultiQueries=true
啦啦啦
---------------UpdateBatch
Class : Dao
/** * 批量更新environ * * @author Liang * * 2017年4月25日 */ void updateBatch(List<Environ> environs);
XML :
<update id="updateBatch" > <foreach collection="list" close="" index="index" item="item" open="" separator=";"> UPDATE environ SET pm25_h = #{item.pm25H}, pm10_h = #{item.pm10H}, temp_h = #{item.tempH}, humi_h = #{item.humiH}, co2_h = #{item.co2H}, tvoc_h = #{item.tvocH}, conn_status = #{item.connStatus}, update_time = NOW() WHERE id = #{item.id} </foreach> </update>
啦啦啦
-------
Mybatis -- 批量更新 -- updateBatch
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。