Exemplo n.º 1
0
 public static void main(String[] args) throws Exception {
   CachedRowSetPage cp = new CachedRowSetPage();
   cp.initParam("mysql.ini");
   CachedRowSet rs = cp.query("select * from student_table", 3, 2); // ①
   // 向后滚动结果集
   while (rs.next()) {
     System.out.println(rs.getString(1) + "\t" + rs.getString(2) + "\t" + rs.getString(3));
   }
 }