从eclipse连接到mysql

时间:2013-02-24 21:20:49

标签: java mysql eclipse

请简单,我如何从eclipse连接到MySQL。如果你能给我一个简单的步骤,请给我一个例子。

1 个答案:

答案 0 :(得分: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