1

我的 IDE 是 Eclipse Indigo。当我尝试连接时,我得到了这个:

java.lang.ClassNotFoundException: com.mysql.jdbc.Driver

这是我的代码。

public class TPCH
{
    public static void main(String[] args)
    {
        String userName = "tpch";
        String password = "tpch";
        Connection conn = null;
        Properties connectionProps = new Properties();
        connectionProps.put("user", userName);
        connectionProps.put("password", password);

        try
        {
            Class.forName("com.mysql.jdbc.Driver");
        }
        catch (Exception e)
        {
            e.printStackTrace();
        }
        try {
            conn = DriverManager.getConnection(
                           "jdbc:mysql://localhost:3306/",
                           connectionProps);
        } catch (SQLException e1) {
            // TODO Auto-generated catch block
            e1.printStackTrace();
            System.out.println("Error connecting to db");
        }
    }
}

我认为没有导入 JDBC。我试图通过

preference -> java -> build path -> user library -> add jars

但我仍然有这个例外。

4

1 回答 1

5

这不是在 Eclipse 中将 JAR 添加到类路径的方式。

您必须右键单击您的项目,选择Java Build Path > Libraries并添加一个 JAR 文件。对于 MySQL,您需要MySQL 连接器 J

在此处输入图像描述

于 2012-05-14T14:19:29.260 回答