程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> DB2數據庫 >> DB2教程 >> DB2分頁的實現

DB2分頁的實現

編輯:DB2教程

下文為您介紹DB2分頁的腳本,供您參考學習,如果您對DB2分頁方面感興趣的話,不妨一看,相信對您學習DB2分頁會有所啟迪。

  1. String sqlcount="select count(*) from stu.book "+condition;  
  2.     System.out.println(sqlcount);  
  3.       
  4.     int curPage; //當前需要顯示的頁碼  
  5.     int totalPages;   //總頁數  
  6.     int pageRecord=10; //每頁要顯示的記錄條數  
  7.     int totalRecords; //滿足條件的總共的記錄條數  
  8.     if(CPage!=null ){  
  9.      curPage =Integer.parseInt(CPage);  
  10.      if(curPage<1){  
  11.       curPage=1;  
  12.      }  
  13.     }else{  
  14.      curPage=1;  
  15.     }  
  16.     Connection con=Dao.getConn();   //獲取數據庫連接  
  17.     try {  
  18.     ps=con.prepareStatement(sqlcount);  
  19.     rs=ps.executeQuery();  
  20.     if(rs.next()){  
  21.      totalRecords=rs.getInt(1);   
  22.      if(totalRecords%pageRecord==0)   
  23.       totalPages=totalRecords/pageRecord;//當每頁顯示的記錄條數能被總記錄條數整除時 總頁數為總記錄條數除以每頁顯示的記錄條數  
  24.             else   
  25.           totalPages=totalRecords/pageRecord+1;//當每頁顯示的記錄條數不能被總記錄條數整除時 總頁數為總記錄條數除以每頁顯示的記錄條數的商再加1  
  26.      String sql;  
  27.      if(curPage==1){  
  28.       sql="select * from stu.book "+condition+" FETCH FIRST   "+ pageRecord+" ROWS ONLY";  
  29.        
  30.      }else{  
  31.      sql="select * from stu.book "+condition+" and booknum not in ( select booknum from stu.book "+condition+" FETCH FIRST "+(curPage-1)*pageRecord+" ROWS ONLY )"+" FETCH FIRST   "+ pageRecord+" ROWS ONLY";  
  32.      }  
  33.      System.out.println(sql);  
  34.      ps=con.prepareStatement(sql);  
  35.      rs=ps.executeQuery();  
  36.      while(rs.next()){  
  37.       Book b=new Book();  
  38.       b.setBooknum(rs.getString(1));  
  39.       b.setBookname(rs.getString(2));  
  40.       b.setBookindate(rs.getString(3));  
  41.       b.setBorrower(rs.getString(4));  
  42.       b.setLenddate(rs.getString(5));  
  43.       b.setRemark(rs.getString(6));  
  44.       al.add(b);  
  45.        
  46.      }  
  47.           
  48.       
  49.     }else{  
  50.      return al;  
  51.     }  
  52.    } catch (SQLException e1) {  
  53.      
  54.     e1.printStackTrace();  
  55.    }  
  56.      return al;  

以上就是DB2分頁的實現方法。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved