我正在尝试通过我的应用程序将数据插入google cloud mysql数据库,该应用程序通过eclipse构建在java上。下面是代码:
package com.example.dao;
import java.sql.Connection;
import java.sql.DriverManager;
public class dao {
private static Connection con;
public static Connection getcon(){
try{
String instanceConnectionName = "edu-vitae1";
String databaseName = "eduvitae";
String username = "root";
String password = "edu";
String jdbcUrl = String.format(
"jdbc:mysql://google/eduvitae?cloudSqlInstance=edu-vitae1&socketFactory=com.google.cloud.sql.mysql.SocketFactory&user=root&password=root&useSSL=false",
databaseName,
instanceConnectionName);
Connection con = DriverManager.getConnection(jdbcUrl, username, password);
Class.forName("com.mysql.jdbc.GoogleDriver");
//con=DriverManager.getConnection("jdbc:google:mysql://edu-vitae1>/edu-vitae?user=root&password=root");
}
catch (Exception e) {
System.out.println(e);
}
return con;
}
}
部署项目后,出现以下错误:
java.sql.sqlexception:找不到适合的驱动程序jdbc:mysql://google/eduvitae?cloudsqlinstance=edu-vitae1&socketfactory=com.google.cloud.sql.mysql.socketfactory&user=root&password=root&usessl=false
有人能帮我解决这个问题吗。先谢谢你
1条答案
按热度按时间nhn9ugyo1#
3天后,我在代码中发现了一个愚蠢的错误。请注意,在我的代码中,我首先建立了连接,然后使用class.forname(“com.mysql.jdbc.googledriver”)加载了驱动程序;这是不正确的。您应该首先使用class.forname加载驱动程序,然后使用drivermanager.getconnection建立连接。请不要像我这样犯愚蠢的错误,因为我在这个愚蠢的错误上浪费了3天时间。我在下面发布了正确的代码供您参考: