Reputation: 193
I am trying to run select query in jmeter. I am getting this response in listners "Cannot create PoolableConnectionFactory" I have attached my myphpadmin page which I use to create db. Thanks in advance.
Upvotes: 4
Views: 9689
Reputation: 34566
On JMeter side check:
If all those are ok, then you're most probably facing same issues as the ones described here:
Upvotes: 1
Reputation: 168197
Check out MySQL Database and JMeter - How to Test Your Connection for more information
Upvotes: 1
Reputation: 58882
JDBC jar should be in lib folder:
Fully qualified name of driver class. (Must be in JMeter's classpath - easiest to copy .jar file into JMeter's /lib directory).
I assume you use your jar for MySQL
DB:
The list of the validation queries can be configured with jdbc.config.jdbc.driver.class property and are by default:
MySQL com.mysql.jdbc.Driver
Upvotes: 1