美文网首页
Jmeter JDBC Request简单使用:SelectSt

Jmeter JDBC Request简单使用:SelectSt

作者: 嘤嘤嘤999 | 来源:发表于2020-09-09 07:39 被阅读0次

    *******************添加数据库jar包到Jmeter的bin目录下*********************

    • 没有这个jar包可以在网上下载

    mysql-connector-java下载地址:

    http://mvnrepository.com/artifact/mysql/mysql-connector-java

    image.png

    一、在Test Plan测试计划里添加察看结果树和聚合报告

    image

    二、添加线程组,Test Plan---添加---Threads(Users)---线程组

    image

    三、添加JDBC Request,线程组---添加---Sampler---JDBC Request

    image

    四、添加JDBC Connection Configuration,在JDBC Request---添加---配置元件---JDBC Connection Configuration

    image

    五、配置JDBC Connection Configuration

    5.1填写数据库URL,前面都是127.0.0.1后面我的是3303,具体根据自己的库来填写

    jdbc:mysql://127.0.0.1:3303/guoying?serverTimezone=UTC

    image

    5.2 Select Statement 输入名字,选择Select Statement,然后输入查询语句

    select * from 表名;

    image image

    5.3输入完毕之后点击运行

    image

    5.4返回数据成功,打开察看结果树---响应数据

    image

    六、Update Statement注意事项

    1.支持测试非select语句,并且支持测试多条

    2.若其中夹杂select语句,自动忽略

    3.若第一条语句为select语句,则报错

    6.1 Update Statement,输入修改数据库表内容的语句

    update alei set age=26 where idalei=1;

    image

    6.2成功修改,1updates

    image

    6.3刚才age=20,现在age=26

    image image

    七、 Update Statement,两种语句放在一起测试

    7.1 输入update和select语句进行测试

    image

    7.2输入完语句点击运行,报错如下:

    You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'select * from alei' at line 2

    image

    7.3注意带有select查询的操作要在Database URL添加如下内容:

    &allowMultiQueries=true

    image

    7.4请求成功

    image

    八、Callable Statement:只要语法正确,任何语句,再多的条数都能支持

    image image

    @希望能帮到大家!

    相关文章

      网友评论

          本文标题:Jmeter JDBC Request简单使用:SelectSt

          本文链接:https://www.haomeiwen.com/subject/vrpjektx.html