Support for MySQL Connector/J 8+
tampix opened this issue · 3 comments
tampix commented
Hello, and thanks for the library.
Currently, "mysql"
:adapter
datasource classname is "com.mysql.jdbc.jdbc2.optional.MysqlDataSource"
.
From Connector/J 8+ onwards, the datasource changed to com.mysql.cj.jdbc.MysqlDataSource
(see https://dev.mysql.com/doc/connector-j/8.0/en/connector-j-api-changes.html)
As such, when using MySQL 8+, you have to either :
- use
:jdbc-url
- use both
:adapter
and:datasource-class-name
It would be nice to have an adapter for mysql8 to handle that Connector/J change.
tampix commented
Ah sorry, i didn't expect that fast of a reaction. Thanks a lot!