zoukankan      html  css  js  c++  java
  • Jmeter工具学习(五)--JDBC Request执行多条SQL语句

     最近在工作中使用Jmeter工具运行多条sql语句,运行失败,sql报错。作者事后整理记录下来,方便以后查看。

    报错信息如下:

     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 table;'

    1、添加JDBC Connection Configuration并配置

    Database URL为MySQL的连接串,如果要执行多条SQL语句,后面还要添加“?allowMultiQueries=true

    JDBC Driver Class是本机的jdbc驱动路径。Mysql数据库,默认com.mysql.jdbc.Driver,不同数据库有不同默认值

     

    2、添加一个JDBC Request并配置

    如果要执行多条SQL语句,Quer Type一定要选择 Callable statement,使用Callable statement时,一次可以包含多个SQL,每条SQL语句用“隔开

    3、运行jmeter,查看结果(如下图)

     ——————————————————————————————————————————-

    参考地址:https://blog.csdn.net/qq_36502272/article/details/105457235

  • 相关阅读:
    2020916 spring总结
    20200915--事务
    20200915-mybatis基础
    20200911--使用注解开发
    20200910--Spring配置
    20200909--spring基础-IOC
    20200909-待补充
    20200909记我所看到的问题
    20200909-spring基础一
    面向对象
  • 原文地址:https://www.cnblogs.com/changpuyi/p/13062214.html
Copyright © 2011-2022 走看看