g3blv
g3blv

Reputation: 4377

Is MariaDB Java Client 1.5.7 compliant with JDBC 4.2

I'm using LocalDate in Java 8 and I'm trying to INSERT data into a table in MariaDB. I'm using MariaDB Java Client 1.5.7. I get an error message that I can't insert a LocalDate when I try to INSERT the data. Reading some posts here and here this shouldn't be an issue for drivers that support JDBC 4.2. Does MariaDB Java Client 1.5.7 client support JDBC 4.2? The error message sort of tells me that it is not working but I just want to make that I don't have some errors in my code.

Upvotes: 1

Views: 233

Answers (1)

Mureinik
Mureinik

Reputation: 312219

In a word - no, it doesn't. By checking out their about page you can see that the 1.5.x generation of MariaDB JDBC drivers support JDK 7, which includes JDBC 4.1, not 4.2

Upvotes: 1

Related Questions