1.2k questions

1.4k answers

361 comments

339 users

Categories

Sidebar
0 votes
912 views
by garrett-h-6007 (240 points)
org.h2.message.DbException: Class "com.mysql.jdbc.Driver" not found [90086-174]

1 Answer

0 votes
 
Best answer

Due to recent changes in the MySQL engine, starting with MySQL 8, you will need to use the MySQL JDBC connector and will no longer be able to use the MariaDB JDBC connector against MySQL.

The MySQL JDBC connectors can be found at https://dev.mysql.com/downloads/connector/j/

To install the JDBC connector, follow this KB: https://www.qvera.com/kb/index.php/1476

by ben-s-7515 (13.0k points)
...