jdbc.properties
完美配置
jdbc.driver=com.mysql.cj.jdbc.Driver
#jdbc.url=jdbc:mysql://localhost:3306/kdb1?serverTimezone=UTC
jdbc.url=jdbc:mysql://localhost:3306/kdb1?serverTimezone=Asia/Shanghai&useUnicode=true&characterEncoding=utf8&useSSL=false&allowMultiQueries=true
jdbc.username=root
jdbc.password=root
- allowMultiQueries=true
1.可以在sql语句后携带分号,实现多条SQL语句执行。
2.可以执行批处理,同时发出多个SQL语句。