I am at a loss for how to fix this.
It seems to be referencing the MySQL driver.
I don't now why.
I have completely deleted that driver from my project and yet I am still getting this error.
The information in this "Configure Google Cloud SQL Instance" window is 100% correct (to the best of my knowledge).
And we have authorized this app engine app to access our Google Cloud SQL instance on console.cloud.google.com.
if (SystemProperty.environment.value() == SystemProperty.Environment.Value.Production) {
// This is App Engine
Class.forName("com.mysql.jdbc.GoogleDriver");
//url = "jdbc:google:mysql://" + instanceId + "/" + database + "?user=" + user;
url = "jdbc:google:mysql://" + instanceId + "/" + database + "?user=root";
conn = DriverManager.getConnection(url);
} else {