以下的文章主要描述的是在MySQL數據庫中正確實現分頁顯示的實際應用代碼,如以下所示,以下就是對MySQL數據庫中正確實現分頁顯示的實際應用代碼的描述,希望在你今後的學習中會對你有所幫助。
- public List<Product> getProducts(int pageNo, int pageSize)
- {
- Connection conn=null;
- ResultSet rs=null;
- List<Product> list=new ArrayList<Product>();
- conn=DB.getConn();
- String sql="select * from product limit "+(pageNo-1)*pageSize+","+pageSize;
- rs=DB.executeQuery(conn, sql);
- try
- {
- while(rs.next())
- {
- Product p=new Product();
- p.setId(rs.getInt("id"));
- p.setName(rs.getString("name"));
- p.setDescr(rs.getString("descr"));
- p.setNormalPrice(rs.getDouble("normalprice"));
- p.setMemberPrice(rs.getDouble("memberprice"));
- p.setCategoryId(rs.getInt("categoryid"));
- p.setPdate(rs.getTimestamp("pdate"));
- list.add(p);
- }
- } catch (SQLException e)
- {
- e.printStackTrace();
- }
- finally
- {
- DB.closeRs(rs);
- DB.closeConn(conn);
- }
- return list;
- }
上述的相關內容就是對MySQL數據庫中實現分頁顯示的代碼的描述,希望會給你帶來一些幫助在此方面。