没有合适的驱动程序错

时间:2015-01-17 17:23:45

标签: java mysql

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/

有什么想法吗?

2 个答案:

答案 0 :(得分:2)

您在网址中mysql msql拼错了{{1}}。

答案 1 :(得分:0)

您的mysql数据库版本不支持您的驱动程序版本,反之亦然。

在此处查找兼容性矩阵:Chapter 2 Connector/J Versions

enter image description here