I am developing a simple JAVA Time triggered Azure Function.
I am trying to connect to a Azure MySQL instance but I keep getting this error:
[Information] com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure
The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server.
Here is the source code:
String url="jdbc:mysql://XXXX.mysql.database.azure.com:3306/DBNAME?useSSL=true&requireSSL=false";
connect = DriverManager.getConnection(url, "user@DBNAME", "passwd");
statement = connect.createStatement();
resultSet statement.executeQuery("select * from table1");
I am using the following library:
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>8.0.13</version>
</dependency>
Notes:
The program works fine on my local machine (i.e., after adding my IP address to the MySQL firewall, I can reach the DB from my machine);
I've already tried different mysql libraries: nothing changes;
Another Azure function implemented with NodeJS is able to reach the DB;
I tried to add the Function "ADDITIONAL OUTBOUND IP ADDRESSES" to the MySQL firewall: nothing changes.
Any ideas?
Thank you in advance.
5.1.31 MySQL-connector-java version Worked for me.
Connecting MySQL Azure with Java