我正在尝试建立到我的数据库 (MySQL) 的连接,我在网上搜索了一个看起来像这样的代码,但他使用的是 Oracle 数据库,而不是我使用的 MySQL 数据库。有人可以帮忙吗?这是我的代码...public static Connection DB(){ try { Class.forName("oracle.jdbc.driver.OracleDriver"); //This is my problem Connection con=DriverManager.getConnection("jdbc:mysql://localhost:3306/Image","root",""); return con; } catch (ClassNotFoundException | SQLException e) { JOptionPane.showMessageDialog(null, e); } return null;}
2 回答
海绵宝宝撒
TA贡献1809条经验 获得超8个赞
替换这个
Class.forName("oracle.jdbc.driver.OracleDriver");
Connection
con=DriverManager.getConnection("jdbc:mysql://localhost:3306/Image","root","");
有了这个
Class.forName("com.mysql.jdbc.Driver");
Connection con=DriverManager.getConnection(
"jdbc:mysql://localhost:3306/Image","username","password");
杨魅力
TA贡献1811条经验 获得超6个赞
Class.forName("com.mysql.jdbc.Driver");
Connection con=DriverManager.getConnection("jdbc:mysql://localhost:3306/Image","root","");
添加回答
举报
0/150
提交
取消