Jmeter【数据库】JDBC Connection Configuration
一.添加JDBC Connection Configuration
线程组->添加->配置元件->JDBC Connection Configuration
二.配置
validation query:选择select1
DataBase URL:格式为:jdbc:mysql://服务器ip:端口号/数据库
JDBC Driver class:选择配置的数据库驱动程序
Username:连接的数据库的名字
Password:连接的数据库的密码
问题
1.时区问题:在数据库后面加上?serverTimezone=UTC即可
jdbc:mysql://localhost:3306/mysqltest?serverTimezone=UTC
2.执行多条语句:在后面加上?allowMultiQueries=true
jdbc:mysql://localhost:3306/mysqltest?serverTimezone=UTC&allowMultiQueries=true
3.字符编码:在数据库后面加上?useUnicode=true&characterEncoding=utf8
jdbc:mysql://localhost:3306/mysqltest?serverTimezone=UTC&allowMultiQueries=true&useUnicode=true&characterEncoding=utf8