ASP.NET分页管理器的设计及实现

在DataGrid的web版控件中提供了自动分页的功能,但是我从来没用过它,因为它实现的分页只是一种假相。我们为什么需要分页?那是因为符合条件的记录可能很多,如果一次读取所有的记录,不仅延长获取数据的时间,而且也极度浪费内存。而分页的存在的主要目的正是为了解决这两个问题(当然,也不排除为了UI美观的需要而使用分页的)。而web版的DataGrid是怎样实现分页的了?它并没有打算解决上述两个问题,而还是一次读取所有的数据,然后以分页的样子表现出来。这是对效率和内存的极大损害!

成都创新互联公司是专业的平阳网站建设公司,平阳接单;提供成都网站建设、成都网站制作,网页设计,网站设计,建网站,PHP网站建设等专业做网站服务;采用PHP框架,可快速的进行平阳网站开发网页制作和功能扩展;专业做搜索引擎喜爱的网站,专业的做网站团队,希望更多企业前来合作!

于是我自己实现了ASP.NET分页管理器IPaginationManager ,IPaginationManager 每次从数据库中读取指定的任意一页,并且可以缓存指定数量的page。这个分页管理器的主要特点是:

(1)支持随机跳转。这是通过嵌套Select语句实现的。

(2)支持缓存。通过EnterpriseServerBase.DataStructure.FixCacher进行支持。

先来看看IPaginationManager接口的定义:

 
 
 
  1. public interface IPaginationManager
  2. {
  3. void Initialize(DataPaginationParas paras) ;
  4. void Initialize(IDBAccesser accesser ,
  5. int page_Size ,string whereStr ,string[] 
  6. fields) ;//如果选择所有列,fields可传null
  7. DataTable GetPage(int index) ; //取出第index页
  8. DataTable CurrentPage() ;
  9. DataTable PrePage() ;
  10. DataTable NextPage() ;
  11. int PageCount{get ;}
  12. int CacherSize{get; set; }
  13. }

这个接口定义中,最主要的是GetPage()方法,实现了这个方法,其它的三个获取页面的方法CurrentPage、PrePage、NextPage也就非常容易了。另外,CacherSize属性可以让我们指定缓存页面的数量。如果不需要缓存,则设置其值<=0,如果需要无限缓存,则值为Int.MaxValue。

IPaginationManager接口中的第二个Initialize方法,你不要关心,它是给XCodeFactory生成的数据层使用了,我们来看看第一个Initialize方法的参数类型DataPaginationParas的定义:

 
 
 
  1. public class DataPaginationParas
  2. {
  3. public int PageSize = 10 ; 
  4. public string[] Fields = {"*"}; 
  5. //要搜索出的列,"*"表示所有列
  6. public string ConnectString ;
  7. public string TableName ; 
  8. public string WhereStr ; 
  9. //搜索条件的where字句
  10. public DataPaginationParas
  11. (string connStr ,string tableName ,
  12. string whereStr)
  13. {
  14. this.ConnectString = connStr ;
  15. this.TableName = tableName ;
  16. this.WhereStr = whereStr ;
  17. #region GetFiedString
  18. public string GetFiedString()
  19. {
  20. if(this.Fields == null) 
  21. {
  22. this.Fields = new string[] {"*"} ;
  23. }
  24. string fieldStrs = "" ;
  25. for(int i=0 ;i
  26. {
  27. fieldStrs += " " + this.Fields[i] ;
  28. if(i != (this.Fields.Length -1))
  29. {
  30. fieldStrs += " , " ;
  31. }
  32. else
  33. {
  34. fieldStrs += " " ;
  35. }
  36. }
  37. return fieldStrs ;
  38. }
  39. #endregion
  40. }

DataPaginationParas.GetFiedString用于把要搜索的列形成字符串以便嵌入到SQL语句中。DataPaginationParas中的其它字段的意思都很明显。

现在来看看ASP.NET分页管理器的实现了:

 
 
 
  1. public class PaginationManager :IPaginationManager
  2. {
  3. private DataPaginationParas theParas ;
  4. private IADOBase adoBase ; 
  5. private DataTable curPage = null ;
  6. private int itemCount = 0 ;
  7. private int pageCount = -1 ; 
  8. private int curPageIndex = -1 ;
  9. private FixCacher fixCacher = null ;
  10. private string fieldStrs = "" ;
  11. /// 
  12. /// cacheSize 小于等于0 -- 表示不缓存 ,
  13. Int.MaxValue -- 缓存所有
  14. ///
  15.    
  16. public PaginationManager(int cacheSize)
  17. {
  18. if(cacheSize == int.MaxValue)
  19. {
  20. this.fixCacher = new FixCacher() ;
  21. }
  22. else if(cacheSize >0)
  23. {
  24. this.fixCacher = new FixCacher(cacheSize) ;
  25. }
  26. else
  27. {
  28. this.fixCacher = null ;
  29. }
  30. public PaginationManager()
  31. {}
  32. #region IDataPaginationManager 成员
  33. public int CacherSize
  34. {
  35. get
  36. {
  37. if(this.fixCacher == null)
  38. {
  39. return 0 ;
  40. }
  41. return this.fixCacher.Size ;
  42. }
  43. set
  44. {
  45. if(this.fixCacher == null)
  46. {
  47. this.fixCacher = new FixCacher(value) ;
  48. }
  49. else
  50. {
  51. this.fixCacher.Size = value ;
  52. }
  53. }
  54. }
  55. public int PageCount
  56. {
  57. get
  58. {
  59. if(this.pageCount == -1)
  60. {
  61. string selCountStr = string.Format
  62. ("Select count(*) from {0} {1}" ,this.theParas.
  63. TableName ,this.theParas.WhereStr) ;
  64. DataSet ds = this.adoBase.DoQuery(selCountStr) ;
  65. this.itemCount = int.Parse(ds.Tables[0].
  66. Rows[0][0].ToString()) ;
  67. this.pageCount = this.itemCount/this.
  68. theParas.PageSize ;
  69. if((this.itemCount%this.theParas.PageSize > 0))
  70. {
  71. ++ this.pageCount ;
  72. }
  73. }
  74. return this.pageCount ;
  75. }
  76. }
  77. /// 
  78. /// GetPage 取出指定的一页
  79. ///
  80.    
  81. public DataTable GetPage(int index)
  82. {
  83. if(index == this.curPageIndex)
  84. {
  85. return this.curPage ;
  86. }
  87. if((index < 0) || (index > (this.PageCount-1)))
  88. {
  89. return null;
  90. }
  91. DataTable dt = this.GetCachedObject(index) ;
  92. if(dt == null)
  93. {
  94. string selectStr = this.ConstrutSelectStr(index) ;
  95. DataSet ds = this.adoBase.DoQuery(selectStr) ;
  96. dt = ds.Tables[0] ;
  97. this.CacheObject(index ,dt) ;
  98. }
  99. this.curPage = dt ;
  100. this.curPageIndex = index ;
  101. return this.curPage ;
  102. }
  103. private DataTable GetCachedObject(int index)
  104. {
  105. if(this.fixCacher == null)
  106. {
  107. return null ;
  108. }
  109. return (DataTable)this.fixCacher[index] ;
  110. }
  111. private void CacheObject(int index ,DataTable page)
  112. {
  113. if(this.fixCacher != null)
  114. {
  115. this.fixCacher.PutIn(index ,page) ;
  116. }
  117. }
  118. public DataTable CurrentPage()
  119. {
  120. return this.curPage ;
  121. }
  122. public DataTable PrePage()
  123. {
  124. return this.GetPage((--this.curPageIndex)) ;
  125. }
  126. public DataTable NextPage()
  127. {
  128. return this.GetPage((++this.curPageIndex)) ;
  129. private string ConstrutSelectStr(int pageIndex)
  130. {
  131. if(pageIndex == 0)
  132. {
  133. return string.Format("Select top {0} {1} from 
  134. {2} {3} ORDER BY ID" ,this.theParas.PageSize ,
  135. this.fieldStrs ,this.theParas.TableName ,
  136. this.theParas.WhereStr) ;
  137. }
  138. int innerCount = this.itemCount - 
  139. this.theParas.PageSize*pageIndex ;
  140. string innerSelStr = string.Format("Select 
  141. top {0} {1} from {2} {3} ORDER BY ID DESC " ,
  142. innerCount , this.fieldStrs ,this.theParas.
  143. TableName ,this.theParas.WhereStr) ;
  144. string outerSelStr = string.Format("Select top {0} 
  145. * from ({1}) DERIVEDTBL ORDER BY ID" ,this.
  146. theParas.PageSize ,innerSelStr) ;
  147. return outerSelStr ;
  148. }
  149. #region Initialize
  150. public void Initialize(IDBAccesser accesser, 
  151. int page_Size, string whereStr, string[] fields)
  152. {
  153. this.theParas = new DataPaginationParas(accesser.
  154. ConnectString ,accesser.DbTableName ,whereStr) ;
  155. this.theParas.Fields = fields ;
  156. this.theParas.PageSize = page_Size ;
  157. this.fieldStrs = this.theParas.GetFiedString() ; 
  158. this.adoBase = new SqlADOBase(this.theParas.
  159. ConnectString) ;
  160. public void Initialize(DataPaginationParas paras)
  161. {
  162. this.theParas = paras ;
  163. this.fieldStrs = this.theParas.GetFiedString() ; 
  164. this.adoBase = new SqlADOBase(this.theParas.
  165. ConnectString) ;
  166. }
  167. #endregion
  168. #endregion
  169. }

解这个类的实现,可以从GetPage(int index)方法入手,另外私有方法ConstrutSelectStr()的实现说明了如何使用嵌套sql语句进行随机分页搜索。

最后,关于分页管理器,需要指出的是,搜索对应的表必须有一个名为"ID"的主键--这是唯一的要求。另外,分页管理器实现用到的数据访问低阶封装IADOBase定义于EnterpriseServerBase类库中。

使用ASP.NET分页管理器是很简单的,加上UI界面后,只要把返回的DataTable绑定到DataGrid就可以了。

网站栏目:ASP.NET分页管理器的设计及实现
文章源于:http://www.mswzjz.cn/qtweb/news26/109576.html

攀枝花网站建设、攀枝花网站运维推广公司-贝锐智能,是专注品牌与效果的网络营销公司;服务项目有等

广告

声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 贝锐智能