博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
mysql的jdbc.url携带allowMultiQueries=true参数的作用及其原理
阅读量:5167 次
发布时间:2019-06-13

本文共 927 字,大约阅读时间需要 3 分钟。

如下配置

jdbc.url=jdbc:mysql://127.0.0.1:3306/chubb_2?autoReconnect=true&useUnicode=true&characterEncoding=UTF-8&allowMultiQueries=true

 

allowMultiQueries=true参数的作用:

①可以在sql语句后携带分号,实现多语句执行。

如:mybatis的mapper.xml文件

 

②可以执行批处理,同时发出多个SQL语句。

UPDATE dev_rel
gmt_modified=now(), pro_id = #{devRelDO.proId}, dev_id = #{devRelDO.devId}, group_id = #{devRelDO.groupId}, own_type = #{devRelDO.ownType}
id = #{devRelDO.id}

 

 

底层原理:

 

 

 

参考:

https://my.oschina.net/zhuguowei/blog/411853

https://blog.csdn.net/xuezhezhishen/article/details/78692698

 https://my.oschina.net/freedemon/blog/1813816

https://www.cnblogs.com/jeffen/p/6038261.html

https://blog.csdn.net/qq_26718271/article/details/65629805

 

转载于:https://www.cnblogs.com/poterliu/p/10308698.html

你可能感兴趣的文章
SDUTOJ-3311数据结构实验之串三:KMP应用
查看>>
数据库性能优化手法
查看>>
关于ViewState
查看>>
HP QR Code (php二维码生成类库)
查看>>
Spring MVC Controller中GET方式传过来的中文参数会乱码的问题
查看>>
网页设计中常用的CSS命名规则整理
查看>>
后端接口时间戳或者随机数的作用
查看>>
Yarn Capacity Scheduler配置
查看>>
第八周作业
查看>>
IOS越狱环境搭建
查看>>
iOS 手势及触摸
查看>>
暑假培训的第一天
查看>>
pdf格式文档怎么拆分为多个文档
查看>>
vue插件集合
查看>>
Spring Security 入门(1-3-3)Spring Security - logout 退出登录
查看>>
新概念英语(1-51)A pleasant climate
查看>>
线段树专辑—— pku 1436 Horizontally Visible Segments
查看>>
python socket.error: [Errno 10061]
查看>>
知识点
查看>>
SVN 多分支管理
查看>>