/**
* 设置总页数
* @param countPage */
public void setCountPage() {
//通过总行数设置总页数
if (this.countRow % this.PAGEROW == 0) {//如果总行数除以每页显示的
行数余数为零时,总页数等于它们的商 this.countPage = this.countRow / this.PAGEROW;
} /**
* 得到总行数 * @return */
public int getCountRow() { } /**
* 设置总行数
* @param countRow */
public void setCountRow() {
//通过聚合函数查询 TBL_BOOK 表中一共有多少条数据,并把值存储到 countRow String sql = "SELECT COUNT(*) FROM TBL_BOOK"; try { }
PreparedStatement ps =
ResultSet rs = ps.executeQuery(); if (rs.next()) { }
// TODO Auto-generated catch block e.printStackTrace();
this.countRow = rs.getInt(1);
return countRow;
} else {//否则,总页数等于它们的商加1 this.countPage = this.countRow / this.PAGEROW + 1; }
中
}
super.getConn().prepareStatement(sql);
} catch (SQLException e) {