私の 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
しかし、私はまだその例外があります。