-2

简而言之,我如何从 Eclipse 连接到 MySQL。如果您可以通过示例为我提供一个简单的步骤。

4

1 回答 1

3
try {
        Class.forName("com.mysql.jdbc.Driver");
        Connection con = DriverManager.getConnection("com.mysql.jdbc:mysql://localhost:3306/NewStudents", "root", "root");

        Statement st = con.createStatement();
        ResultSet result = st.executeQuery("select * from students");

        while (result.next()) {
            .....
        }
    }
    catch (ClassNotFoundException e) {
        System.out.println("Driver not found");
    }
    catch (SQLException e) {
        e.printStackTrace();

getConnection 的第一个参数是 url,第二个用户名,第三个密码。还可以通过将 de jdbc 驱动程序添加到项目库中来导入它。

有更好的方法,但这对初学者来说很简单。

这是一个链接,它做同样的事情,它解释了更多。

http://www.stardeveloper.com/articles/display.html?article=2003090401&page=1

于 2013-02-24T21:26:50.857 回答