XAMPP jdbc驱动程序无法加载

时间:2013-11-27 18:53:28

标签: java mysql jdbc

我制作了一个简单的MySQL连接程序,但它不起作用。

package main;
import java.sql.*;

public class Main {

    static Connection con = null;
    static Statement stmt = null;
    static ResultSet rs = null;
    static String url = "jdbc:mysql://localhost:3306/phpmyadmin";
    static String user = "root";
    static String password = "(i dont show this ;)";

    public static void main(String[] args) {

        try {
            System.out.println("Connecting database...");
            con = DriverManager.getConnection(url, user, password);
            System.out.println("Database connected!");
        } catch (SQLException e) {
            throw new RuntimeException("Cannot connect the database!", e);
        } finally {
            System.out.println("Closing the connection.");
            if (con != null) try { con.close(); } catch (SQLException ignore) {}
        }

    }

}

我收到了这个错误:

Connecting database...
Closing the connection.
Exception in thread "main" java.lang.RuntimeException: Cannot connect the database!
at main.Main.main(Main.java:22)
Caused by: java.sql.SQLException: No suitable driver found for jdbc:mysql://localhost:3306/phpmyadmin
at java.sql.DriverManager.getConnection(Unknown Source)
at java.sql.DriverManager.getConnection(Unknown Source)
at main.Main.main(Main.java:19)

我制作了构建路径,并将文件(从连接器)从lib文件夹移动到\xampp\mysql\lib。我也开始使用tomcat(我没有改变任何配置)但它仍然没有工作。

1 个答案:

答案 0 :(得分:4)

您缺少一些重要的步骤,例如关注

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

您可以使用以下链接获取完整说明

http://www.mkyong.com/jdbc/how-to-connect-to-mysql-with-jdbc-driver-java/

 import java.sql.DriverManager;
 import java.sql.Connection;
 import java.sql.SQLException;

 public class JDBCExample {

   public static void main(String[] argv) {

    System.out.println("-------- MySQL JDBC Connection Testing ------------");

try {
    Class.forName("com.mysql.jdbc.Driver");
} catch (ClassNotFoundException e) {
    System.out.println("Where is your MySQL JDBC Driver?");
    e.printStackTrace();
    return;
}

System.out.println("MySQL JDBC Driver Registered!");
Connection connection = null;

try {
    connection = DriverManager
    .getConnection("jdbc:mysql://localhost:3306/mkyongcom","root", "password");

} catch (SQLException e) {
    System.out.println("Connection Failed! Check output console");
    e.printStackTrace();
    return;
}

  if (connection != null) {
    System.out.println("You made it, take control your database now!");
  } else {
    System.out.println("Failed to make connection!");
  }
}
}