// 加载MySQL驱动程序 Class.forName("com.mysql.jdbc.Driver"); // 建立连接 Connection conn = DriverManager.getConnection( "jdbc:mysql://localhost:3306/test?user=root&password=123456"); // 执行查询 Statement stmt = conn.createStatement(); ResultSet rs = stmt.executeQuery("SELECT * FROM student"); // 遍历结果集 while (rs.next()) { int id = rs.getInt("id"); String name = rs.getString("name"); int age = rs.getInt("age"); System.out.println(id + " " + name + " " + age); } // 关闭连接 rs.close(); stmt.close(); conn.close();
在这个示例中,大家首先加载MySQL驱动程序,然后使用DriverManager建立连接。接着创建Statement对象执行查询,并使用ResultSet对象遍历结果集。最后关闭所有连接。
由于JDBC是标准接口,因此大家也可以使用其他数据库的驱动程序(比如Oracle、SQL Server等)来连接不同的数据库。