`
tobackfurture
  • 浏览: 2139 次
  • 性别: Icon_minigender_1
  • 来自: 上海
最近访客 更多访客>>
文章分类
社区版块
存档分类
最新评论
文章列表
2009-07-30 ibatis调用oracle存储过程分页 关键字: oracle存储过程分页 1、users.xml片段 Xml代码 <resultMap class="user" id="get-all-user">          <result property="id" column="id" />          <result property="userName" column="username" />    ...
package myownthread; /** * 分页 */ public class Page { public static final int PAGESIZE = 20; /** * 总记录数 */ private int totalRowsAmount; /** * 是否设置总记录数 */ private boolean rowsAmountSet; /** * 每页记录数 */ private int pageSize = PAGESIZE; /** * 当前页 */ private int currentPage = 1; ...
Global site tag (gtag.js) - Google Analytics