I am trying to achieve two scenarios using JMeter. But I am facing some issues. Details are as follows. Scenario 1 : I want to test the timings of text file upload and file import in my web application Scenario 2 : Need to verify the database performance. Here I am using MySQL database (SQL Workbench)
Issues : How to capture the time taken by the application for file upload and data importing in my web application The structure of test plan for scenario 1
**Issues : After adding the .jar for driver its still giving an error as
Response message:java.sql.SQLException: Cannot load JDBC driver class 'com.microsoft.jdbc.sqlserver.SQLServerDriver'
On selecting another driver class it is not returning anything in report.** The structure of test plan for scenario 2.
You're using the wrong driver:
So you need to:
com.mysql.cj.jdbc.Driver
select 1
See How to Test MySQL Connection article for more information if needed.