IBatis.Net使用总结(三)-- IBatis实现分页返回数据和总数
IBatis 分页,这里没有使用其他插件,只使用最原始的方法。
输入参数:
int currentPage 当前页
int pageSize 每页大小
Hashtable findCondition 查询条件
out int total 返回总数
输出:
DataTable 或者 IList<T>
使用了三种分页方式,根据实际情况使用。
我在实际应用中,
第一种返回DataTable,在使用过程中,需要注意它所映射的实体对象名称字段。
第二种方法返回泛型集合,使用的比较顺手,也是习惯使用的方法。
第三种方法也是返回泛型集合。但是,它使用的两个参数,偏移量和页面大小,我平常用的概率小点。
1:在一个statements中,使用了两条语句,一个是返回所需的列,一个是返回总数。。
<select id="Article_FindPageByCond" parameterClass="HashTable" resultClass="System.Data.DataSet" > <![CDATA[select T.[PK_Article] ,T.[ArticleTitle] ,T.[ArticleAuthor] ,T.[ArticleSummary] ,T.[ArticleContent] ,T.[Sort] ,T.[EditTime] ,T.[Dr] ,T.[Ts] from ( select A.*, ROW_NUMBER() OVER ( ORDER BY (A.[PK_Article] ) ) rn from (select * from [dbo].[Article]]]> <dynamic prepend="WHERE"> <isNotEmpty prepend="and" property="PKArticle"> PKArticle LIKE '%'+#PKArticle#+'%' </isNotEmpty> <isNotEmpty prepend="and" property="ArticleTitle"> ArticleTitle LIKE '%'+#ArticleTitle#+'%' </isNotEmpty> <isNotEmpty prepend="and" property="ArticleAuthor"> ArticleAuthor LIKE '%'+#ArticleAuthor#+'%' </isNotEmpty> <isNotEmpty prepend="and" property="ArticleSummary"> ArticleSummary LIKE '%'+#ArticleSummary#+'%' </isNotEmpty> <isNotEmpty prepend="and" property="ArticleContent"> ArticleContent LIKE '%'+#ArticleContent#+'%' </isNotEmpty> <isNotNull property="Sort"> <isNotEmpty property="Sort"> <isNotEqual prepend="and" property="Sort" compareValue="0"> Sort LIKE '%'+#Sort#+'%' </isNotEqual> </isNotEmpty> </isNotNull> <isNotEmpty prepend="and" property="EditTime"> EditTime LIKE '%'+#EditTime#+'%' </isNotEmpty> <isNotEmpty prepend="and" property="Dr"> Dr LIKE '%'+#Dr#+'%' </isNotEmpty> <isNotEmpty prepend="and" property="Ts"> Ts LIKE '%'+#Ts#+'%' </isNotEmpty> </dynamic> ) A ) T where 1=1 and <![CDATA[ rn <= #currentPage# * #pageSize# ]]> and <![CDATA[ rn >(#currentPage# - 1) * #pageSize# ]]> <![CDATA[ select count(*) as total from ( select A.*, ROW_NUMBER() OVER ( ORDER BY (A.[PK_Article] ) ) rn from (select * from [dbo].[Article]]]> <dynamic prepend="WHERE"> <isNotEmpty prepend="and" property="PKArticle"> PKArticle LIKE '%'+#PKArticle#+'%' </isNotEmpty> <isNotEmpty prepend="and" property="ArticleTitle"> ArticleTitle LIKE '%'+#ArticleTitle#+'%' </isNotEmpty> <isNotEmpty prepend="and" property="ArticleAuthor"> ArticleAuthor LIKE '%'+#ArticleAuthor#+'%' </isNotEmpty> <isNotEmpty prepend="and" property="ArticleSummary"> ArticleSummary LIKE '%'+#ArticleSummary#+'%' </isNotEmpty> <isNotEmpty prepend="and" property="ArticleContent"> ArticleContent LIKE '%'+#ArticleContent#+'%' </isNotEmpty> <isNotNull property="Sort"> <isNotEmpty property="Sort"> <isNotEqual prepend="and" property="Sort" compareValue="0"> Sort LIKE '%'+#Sort#+'%' </isNotEqual> </isNotEmpty> </isNotNull> <isNotEmpty prepend="and" property="EditTime"> EditTime LIKE '%'+#EditTime#+'%' </isNotEmpty> <isNotEmpty prepend="and" property="Dr"> Dr LIKE '%'+#Dr#+'%' </isNotEmpty> <isNotEmpty prepend="and" property="Ts"> Ts LIKE '%'+#Ts#+'%' </isNotEmpty> </dynamic> ) A ) T </select>
返回所需列,返回总数
这种方式,调用前面所说的返回DataTable的方法,完成分页
/// <summary> /// 按条件获取分页数据,返回DataTable对象 /// </summary> /// <param name="currentPage"></param> /// <param name="pageSize"></param> /// <param name="findCondtion"></param> /// <param name="total"></param> /// <returns></returns> public DataTable FindPageByCondition(int currentPage, int pageSize, Hashtable findCondition, out int total) { String stmtId = "Article_FindPageByCond"; total = ; findCondition.Add("currentPage", currentPage); findCondition.Add("pageSize", pageSize); BaseDao bd = new BaseDao(); DataSet ds = bd.QueryForDataSet(stmtId, findCondition); DataTable dt = ds.Tables[]; total = Convert.ToInt32(ds.Tables[].Rows[][].ToString()); return dt; }
使用BaseDao.cs返回分页之后的DataTable
2:如果想要返回泛型集合IList<T>,则使用两个statements。一个select返回实体映射,一个select返回总数。
<select id="Article_GetPageByCond" parameterClass="HashTable" resultMap="FullResultMap" > <![CDATA[select T.[PK_Article] ,T.[ArticleTitle] ,T.[ArticleAuthor] ,T.[ArticleSummary] ,T.[ArticleContent] ,T.[Sort] ,T.[EditTime] ,T.[Dr] ,T.[Ts] from ( select A.*, ROW_NUMBER() OVER ( ORDER BY (A.[PK_Article] ) ) rn from (select * from [dbo].[Article]]]> <dynamic prepend="WHERE"> <isNotEmpty prepend="and" property="PKArticle"> PKArticle LIKE '%'+#PKArticle#+'%' </isNotEmpty> <isNotEmpty prepend="and" property="ArticleTitle"> ArticleTitle LIKE '%'+#ArticleTitle#+'%' </isNotEmpty> <isNotEmpty prepend="and" property="ArticleAuthor"> ArticleAuthor LIKE '%'+#ArticleAuthor#+'%' </isNotEmpty> <isNotEmpty prepend="and" property="ArticleSummary"> ArticleSummary LIKE '%'+#ArticleSummary#+'%' </isNotEmpty> <isNotEmpty prepend="and" property="ArticleContent"> ArticleContent LIKE '%'+#ArticleContent#+'%' </isNotEmpty> <isNotNull property="Sort"> <isNotEmpty property="Sort"> <isNotEqual prepend="and" property="Sort" compareValue="0"> Sort LIKE '%'+#Sort#+'%' </isNotEqual> </isNotEmpty> </isNotNull> <isNotEmpty prepend="and" property="EditTime"> EditTime LIKE '%'+#EditTime#+'%' </isNotEmpty> <isNotEmpty prepend="and" property="Dr"> Dr LIKE '%'+#Dr#+'%' </isNotEmpty> <isNotEmpty prepend="and" property="Ts"> Ts LIKE '%'+#Ts#+'%' </isNotEmpty> </dynamic> ) A ) T where 1=1 and <![CDATA[ rn <= #currentPage# * #pageSize# ]]> and <![CDATA[ rn >(#currentPage# - 1) * #pageSize# ]]> </select>
返回映射FullResultMap
<select id="Article_GetCountByCond" resultClass="System.Int32"> <![CDATA[ SELECT count(*) as total FROM ( select A.*, ROW_NUMBER() OVER ( ORDER BY (A.[PK_Article] ) ) rn from (SELECT * FROM [dbo].[Article]]]> <dynamic prepend="WHERE"> <isNotEmpty prepend="and" property="PKArticle"> PKArticle LIKE '%'+#PKArticle#+'%' </isNotEmpty> <isNotEmpty prepend="and" property="ArticleTitle"> ArticleTitle LIKE '%'+#ArticleTitle#+'%' </isNotEmpty> <isNotEmpty prepend="and" property="ArticleAuthor"> ArticleAuthor LIKE '%'+#ArticleAuthor#+'%' </isNotEmpty> <isNotEmpty prepend="and" property="ArticleSummary"> ArticleSummary LIKE '%'+#ArticleSummary#+'%' </isNotEmpty> <isNotEmpty prepend="and" property="ArticleContent"> ArticleContent LIKE '%'+#ArticleContent#+'%' </isNotEmpty> <isNotNull property="Sort"> <isNotEmpty property="Sort"> <isNotEqual prepend="and" property="Sort" compareValue="0"> Sort LIKE '%'+#Sort#+'%' </isNotEqual> </isNotEmpty> </isNotNull> <isNotEmpty prepend="and" property="EditTime"> EditTime LIKE '%'+#EditTime#+'%' </isNotEmpty> <isNotEmpty prepend="and" property="Dr"> Dr LIKE '%'+#Dr#+'%' </isNotEmpty> <isNotEmpty prepend="and" property="Ts"> Ts LIKE '%'+#Ts#+'%' </isNotEmpty> </dynamic> ) A ) T </select>
返回总数
使用IList<T> QueryForList<T>(string statementName, object parameterObject);
/// <summary> /// 按条件获取分页数据,返回IList对象 /// </summary> /// <param name="currentPage"></param> /// <param name="pageSize"></param> /// <param name="findCondtion"></param> /// <param name="total"></param> /// <returns></returns> public IList<Article> GetPageByCondition(int currentPage, int pageSize, Hashtable findCondition) { IList<Article> list=new List<Article>(); String stmtId = "Article_GetPageByCond"; findCondition.Add("currentPage", currentPage); findCondition.Add("pageSize", pageSize); IList<Article> result = SqlMap.QueryForList<Article>(stmtId,findCondition); return result; }
分页返回IList对象
3:使用ibatis.net本身自带的分页功能。
int skipResults 偏移量
int maxResults 每页大小(偏移量之后的页面大小)
statements还是使用了第2种方法,两个statements
IList<T> QueryForList<T>(string statementName, object parameterObject, int skipResults, int maxResults);
IList QueryForList(string statementName, object parameterObject, int skipResults, int maxResults);
public IList GetPage(int skipResults, int maxResults, Hashtable findCondition) { String stmtId = "Article_GetPageByCond"; IList result = SqlMap.QueryForList(stmtId, findCondition, skipResults, maxResults); return result; }
使用自带的分页功能
IBatis.Net使用总结(三)-- IBatis实现分页返回数据和总数的更多相关文章
- sql 排序函数ROW_NUMBER分页返回数据
分页从数据库返回一张表的某些条数据 假设我需要查询 系统表 sys.all_columns中的数据,每次查询10条 第一次查询第1-10条数据 第二次查询第11-20条数据 第三次查询第21-30条数 ...
- easyui-datagrid连接数据库实现分页查询数据
一.利用MVC思想建立底层数据库: package com.hanqi.dao; import java.util.ArrayList; import java.util.List; import o ...
- MySQL+Service+Servlet+Jsp实现Table表格分页展示数据
下面以一个示例讲解如何使用MySQL+Service+Servlet+Jsp实现Table表格分页展示数据: eg:请假管理系统 要求如下: 一.打开首页页面, 访问查询请假记录的 servlet , ...
- tp5 使用paginate分页获取数据对象之后 如何对对象进行数据添加
tp5 使用paginate分页获取数据对象之后 如何对对象进行数据添加 大家都知道,在使用tp5的paginate获取分页数据之后,得到的是一个数据对象,但有时会碰到要对数据对象进行二次加工的情况, ...
- ASP.NET(五):ASP.net实现真分页显示数据
导读:在上篇文章中,介绍了用假分页实现数据的分页显示 ,而避免了去拖动滚动条.但,假分页在分页的同时,其实是拖垮了查询效率的.每一次分页都得重新查询一遍数据,那么有没有方法可以同时兼顾效率和分页呢,那 ...
- Oracle数据库排序后分页查询数据错误问题解决
一.问题描述:根据更新时间倒序排序然后分页查询数据,但是点击分页操作的时候,会出现数据重复看似没有操作的情况 二.问题错误原因分析 分页查询的SQL语句: select * FROM (select ...
- SqlServer存储过程应用二:分页查询数据并动态拼接where条件
前言 开发中查询功能是贯穿全文的,我们来盘一盘使用存储过程分页查询,并且支持动态拼接where条件. 划重点:支持动态拼接where条件 对存储过程的使用有疑问的同学去[SqlServer存储过程的创 ...
- Activity详解三 启动activity并返回结果
首先看演示: 1 简介 .如果想在Activity中得到新打开Activity 关闭后返回的数据,需要使用系统提供的startActivityForResult(Intent intent, int ...
- android中listview分页载入数据
前段时间做的新浪微博项目一直想实现listview分页载入数据,今天最终实现了,哈哈!感觉挺好的,今天又写了个demo给大家分享下. 首先说下listview的优化方案,这也是面试中常考的题目.优化方 ...
随机推荐
- c# WebClient Get Post 方法
public string GetData(string url) { string data; using (var client = new WebClient()) { using (var s ...
- MapReduce实现手机上网流量分析(业务逻辑)
一.问题背景 现在的移动刚一通话就可以在网站上看自己的通话记录,以前是本月只能看上一个月.不过流量仍然是只能看上一月的. 目的就是找到用户在一段时间内的上网流量. 本文并没有对时间分组.下一节进行分区 ...
- HTML-一个网页的头部的大概框架(完善ing)
正常情况下,一个头部(考虑兼容.响应.title图标的需求),所要填写的内容如下: <!DOCTYPE html> <html> <head> <meta c ...
- druid数据库密码加密程序编写
第一步:引入 druid-1.0.1.jar 架包 第二步: 编写程序 package nihao; import com.alibaba.druid.filter.config.ConfigTool ...
- 学习Javascript
分别归类为: javascript变量 javascript运算符 javascript数组 javascript流程语句 javascript字符串函数 javascript函数基础 javascr ...
- [Unity3d]3D项目转换为VR项目(暴风魔镜SDK)
使用暴风魔镜SDK来操作 将魔镜的摄像头拖放到项目中: 将MoJingVrHead的Script剪切到CamRoot中: 这个时候能看到显示2个物体了,不过使用的Canvas还是显示一个: 调整Can ...
- OpenGL Common Mistakes
https://www.opengl.org/wiki/Common_Mistakes Do not use constructors/destructors to initialize/destro ...
- [NHibernate]持久化类(Persistent Classes)
系列文章 [Nhibernate]体系结构 [NHibernate]ISessionFactory配置 引言 持久化类是应用程序用来解决商业问题的类(比如,在电子交易程序中的Customer和Orde ...
- Unity里的Mesh属性
----------------------------------------------------------------------------------------------- Mesh ...
- Ruby常用比较操作符
操作符 含义 == 测试值是否相等 ==== 用来比较case语句的目标和每个when从句的项 <=> 通用比较操作符. 根据接受者小于, 等于, 大于其参数, 返回-1, 0. 1 & ...