码迷,mamicode.com
首页 > 数据库 > 详细

Oracle 分页

时间:2014-06-20 19:05:27      阅读:149      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   code   tar   color   

 

         /* GetDataTable方法需要自己写,传入一个查询语句返回一个datatable */

/// <summary> /// 获取分页数据 /// </summary> /// <param name="PageIndex">页码</param> /// <param name="countPerPage">每页条数</param> /// <param name="columns">返回结果集的列名集合以逗号隔开</param> /// <param name="sqlstr">查询语句</param> /// <returns></returns> public DataTable GetPageData(int PageIndex, int countPerPage, string columns, string sqlstr) { DataTable dt = new DataTable(); //起始条数 int startRow = (PageIndex - 1) * countPerPage + 1; //结束条数 int endRow = PageIndex * countPerPage; string selectStr = "select " + columns + " from (select rownum rownumber ," + columns + " from (" + sqlstr + ") A ) B where rownumber between " + startRow + " and " + endRow; dt = GetDataTable(selectStr); return dt; }

 

Oracle 分页,布布扣,bubuko.com

Oracle 分页

标签:style   class   blog   code   tar   color   

原文地址:http://www.cnblogs.com/bingxueme/p/3796373.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!