Questions tagged [mariadb-connector-j]

2 questions
1
vote
1 answer

mariaDB connector/J v3.0.6 is dumping SQLExceptions to the console. How can I stop this?

We have a legacy application that is being transitioned from MySQL v5.6 to MariaDB 10.8. This application uses a home grown logger ( enough said ). However, when SQL commands like preparedStatement.executeQuery() are run, any SQLException that is…
garneke
  • 35
  • 6
0
votes
0 answers

java.util.ConcurentModificationExeption thrown by this mariadb connector method : mapPropertiesToOption(Builder builder, Properties properties)

I need to connect my app on a mariadb server. Here is the connection declaration: Connection connection = DriverManager.getConnection("jdbc:mariadb://192.168.0.21:3306/smartbox?characterEncoding=utf8mb4", "alan", …