public void connect()
{
try
{
Class.forName("com.mysql.jdbc.Driver").newInstance();
String url = "jdbc:msql://23.249.225.135:3306/";
Connection conn = DriverManager.getConnection(url,"s****d","1*****-");
System.out.println("DB works");
}
catch (Exception e)
{
System.err.println("Got an exception! ");
System.err.println(e.getMessage());
}
}
我的类路径中的/ lib文件夹中有JDBC驱动程序。 继续得到:
No suitable driver found for jdbc:msql://23.249.225.135:3306/
有什么想法吗?
答案 0 :(得分:2)
您在网址中mysql
msql
拼错了{{1}}。
答案 1 :(得分:0)