为什么我一直收到“找不到合适的驱动程序”错误?

时间:2013-12-12 00:47:22

标签: google-app-engine jdbc google-cloud-sql

当我尝试从GAE连接到Cloud SQL时,我收到此错误:

  

“找不到合适的驱动程序   JDBC:谷歌:MySQL的:// parasql应用内:inst101 / db1384221549822"

我的代码如下所示:

Class.forName("com.mysql.jdbc.GoogleDriver");
Connection con = DriverManager.getConnection("jdbc:google:mysql://" + this.instance_name + "/" + this.database_name);

连接旧版“jdbc:google:rdbms://”连接字符串时没有问题。

我该如何解决这个问题?

1 个答案:

答案 0 :(得分:5)

您需要启用mysql connector / j。请按照以下链接中的说明进行操作。

https://developers.google.com/appengine/docs/java/cloud-sql/#enable_connector_j