一个非常简单的分页技术MYSQL+JSP 利用了mysql的LIMIT参数
一个非常简单的分页技术mysql(和php搭配之最佳组合)+(sun企业级应用的首选) 利用了mysql(和php搭配之最佳组合)的limit参数
优点:1自己想出来的 2利用了mysql(和php搭配之最佳组合) 的本身 limit
缺点:现在仅仅实现了 下一个页面功能
<%
int cateid=0;
if(request.getparameter("cateid")==null)
...{cateid=0;}
else...{
cateid=integer.parseint(request.getparameter("cateid"));
}
int next_page=cateid+1;
int per_page=5;
int pagenum=(cateid*per_page)+1;
if(cateid==0)...{
sql="select * from blog_content where log_istop=0 order by log_id desc limit 0,"+per_page+" ";
}else...{
sql="select * from blog_content where log_istop=0 order by log_id desc limit "+pagenum+","+per_page+"";
}
rst=stmt.executequery(sql);
while(rst.next())...{ %>
<p class="content_head"><img src="/edu/uploadpic/2008-2/2008229142056413.gif" alt="\" align="absmiddle">
<%=rst.getstring("log_title")%> [
<%=rst.getstring("log_posttime")%> |
<br>
<%=rst.getstring("log_content")%><br>
<br>
<%}%>
<p class="content_head" align="right" ><a href="default.jsp(sun企业级应用的首选)">回首页</a> <a href="default.jsp(sun企业级应用的首选)?cateid=<%=next_page%>">下一页</a></p>
<span class="smalltxt"></span></td>
</tr></table>
</td>
</tr>
</table>
上一篇: python中设置HTTP代理的方法