我的一个详细的jsp分页程序!(oracle+jsp+apache) 二 源程序 ResultSet rs=stmt.executeQuery(“select * from mytable_view”); int pageSize=你的每页显示纪录数; int thepage=(currPage-1)*pageSize; //下面是 第几页等 完
一 前提
希望最新的纪录在开头给你的表建立查询:
表:mytable
查询:create or replace view as mytable_view from mytable order by id desc 其中,最好使用序列号create sequence mytable_sequence 来自动增加你的纪录id号
<%String sConn=”你的连接”
Class.forName(“oracle.jdbc.driver.OracleDriver”);
Connection conn=DriverManager.getConnection(sConn,”你的用户名”,”密码”);
Statement stmt=conn.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE,ResultSet.CONCUR_UPDATABLE);
Statement stmtcount=conn.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE,ResultSet.CONCUR_UPDATABLE);
String sqlcount=”select count(*) from mytable_view”;
ResultSet rscount=stmtcount.executeQuery(sqlcount);
int rowCount=0; //总的记录数
while (rscount
int pageCount; //总的页数
int currPage; //当前页数
String strPage;
strPage=request.getParameter(“page”);
if (strPage==null){
currPage=1;
}
else{
currPage=Integer.parseInt(strPage);
if (currPage<1) currPage=1;
}
pageCount=(rowCount+pageSize-1)/pageSize;
if (currPage>pageCount) currPage=pageCount;
int n=0;
rs.absolute(thepage+1);
while (n<(pageSize)&&!rs
%>
<%rs.close();
rscount.close();
stmt.close();
stmtcount.close();
conn.close();
%>
<form name=”sinfo” method=”post” action=”sbinfo_index.jsp?condition=<%=condition%>&type=<%=type%>” onSubmit=”return testform(this)”>
第<%=currPage%>页 共<%=pageCount%>页 共<%=rowCount%>条
<%if(currPage>1){%><a href=”sbinfo_index.jsp?condition=<%=condition%>&type=<%=type%>”>首页</a><%}%>
<%if(currPage>1){%><a href=”sbinfo_index.jsp?page=<%=currPage-1%>&condition=<%=condition%>&type=<%=type%>”>上一页</a><%}%>
<%if(currPage<pageCount){%><a href=”sbinfo_index.jsp?page=<%=currPage+1%>&condition=<%=condition%>&type=<%=type%>”>下一页</a><%}%>
<%if(pageCount>1){%><a href=”sbinfo_index.jsp?page=<%=pageCount%>&condition=<%=condition%>&type=<%=type%>”>尾页</a><%}%>
跳到<input type=”text” name=”page” size=”4″ style=”font-size:9px”>页
<input type=”submit” name=”submit” size=”4″ value=”GO” style=”font-size:9px”>
</form>
详细的jsp分页(oracle+jsp+apache)_jsp技巧
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » 详细的jsp分页(oracle+jsp+apache)_jsp技巧
相关推荐
-      通过jdbc连接oracle的十大灵活技术_jsp技巧
-      jdbc之代码重复使用_jsp技巧
-      提升jsp页面响应速度的七大秘籍绝招_jsp技巧
-      jdbc连sql server数据库步骤及有一项操作已被挂起,需重新启动计算机解决办法_jsp技巧
-      解决jsp中使用request乱码问题_jsp技巧
-      jsp中与标签要用不同的方式获得数据库中的数据_jsp技巧
-      jsp2.0新特性_jsp文摘
-      jsp从数据库取得数据作为下拉菜单选项的实现 _jsp技巧