Jmeter connects to the database process diagram

Jmeter connects to the database process diagram

1. Download the MySQL jdbc driver (mysql-connector-java-5.1.28.jar) and put it in the ...\apache-jmeter-3.3\lib\ directory

Driver download address: https://dev.mysql.com/downloads/connector/j/

2. Add the driver address under the test plan

3. Select Thread Group - Add - Configuration Components - JDBC Connection Configuration

4. Configure JDBC Connection Configuration

Variable Name: This name is customized and will be used in JDBC Request

Database URL: jdbc:mysql:// database IP address: database port/database name

JDBC Driver Class: com.mysql.jdbc.Driver

Username: Database connection username

Password: Database connection password

5. Add JDBC Request

The Variable Name in the JDBC Request is consistent with the Variable Name value in the JDBC Connection Configuration

Query Type: You can select the type of SQL, whether it is a query, modification or deletion operation.

6. Add a result tree to see if the data response is correct

Note: If you want to execute multiple SQL statements at one time, separate each SQL statement with a semicolon (;). However, when configuring the Database URL in the JDBC Connection Configuration, add a parameter at the end: ?allowMultiQueries=true, and select Callable statement for Quer Type, as shown in the following figure:

The result is perfect, and I feel very happy~~~~~~

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • JMeter installation and operation tutorial on Linux server
  • Web Jmeter-Detailed explanation of interface testing tools
  • How to connect to Mysql using Jmeter
  • Detailed explanation of Jmeter calling java script process
  • How to automatically generate test reports using jmeter
  • How to get all request messages in jtl file in Jmeter

<<:  Detailed code for building a multi-person video chat service based on webrtc on Ubuntu

>>:  Simple implementation of mini-vue rendering

Recommend

Best way to replace the key in json object

JSON (JavaScript Object Notation, JS Object Notat...

The role of nextTick in Vue and several simple usage scenarios

Purpose Understand the role of nextTick and sever...

HTML Basics_General Tags, Common Tags and Tables

Part 1 HTML <html> -- start tag <head>...

How to deploy Vue project under nginx

Today I will use the server nginx, and I also nee...

Example of using docker compose to build a consul cluster environment

Basic concepts of consul Server mode and client m...

Detailed explanation of JavaScript array deduplication

Table of contents 1. Array deduplication 2. Dedup...

In-depth understanding of umask in new linux file permission settings

Preface The origin is a question 1: If your umask...

A brief discussion on MySQL B-tree index and index optimization summary

MySQL's MyISAM and InnoDB engines both use B+...

Detailed installation process and basic usage of MySQL under Windows

Table of contents 1. Download MySQL 2. Install My...

Analysis of the principles and usage of Linux hard links and soft links

In the Linux system, there is a kind of file call...

MySQL slow_log table cannot be modified to innodb engine detailed explanation

background Getting the slow query log from mysql....