mysql-jdbc数据库连接问题

pftdvrlh  于 2021-06-21  发布在  Mysql
关注(0)|答案(1)|浏览(336)
import java.sql.*;
public class NewClass {
    public static void main(String args[]) throws ClassNotFoundException {
        try {
            Class.forName("com.mysql.jdbc.driver");
        } catch (Exception ex) {
           System.out.println("Error:"+ex.getMessage());
        }
    }
}

在此代码中,输出显示错误: Error:com.mysql.jdbc.driver

nwnhqdif

nwnhqdif1#

您对驱动程序使用了错误的命名约定,它应该是“com.mysql.jdbc.driver”而不是“com.mysql.jdbc.driver”,这里您使用的是小“d”作为驱动程序,并确保您已将所需的jar添加到应用程序“mysql connector.jar”中。请使用下面的代码。
导入java.sql.*;公开课考试{

public static void main(String args[]) throws ClassNotFoundException
{

    try 
    {
         Class.forName("com.mysql.jdbc.Driver");

    } 
    catch (Exception ex) 
    {
       System.out.println("Error:"+ex.getMessage());
    }
}

}

相关问题