Gerd Wagner - 2019-01-03

This error message says that it is a JDBC driver or database product specific problem. The error message can be reproduced by the following small Java program:

package pack;

import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.SQLException;

public class MySqlTest
{
   public static void main(String[] args) 
     throws ClassNotFoundException, SQLException
   {
      Class.forName("com.mysql.jdbc.Driver");

      DriverManager.getConnection("<yourUrl>", 
                                  "<yourUser>", 
                                  "YourPassword);
   }
}