feipeng

不要过分强调技术,思想才是关键!
  新随笔  :: 管理

随笔分类 -  数据库技术

摘要:最近在工作中使用到了GridView这个控件,很好用,可当绑定数据量较大时,就会有性能问题,经过分析,找到了一种可以解决这个问题的方法,其实质是下面的SQL(Oracle)语句: select a.* from (select rownum as row_id, b.* from (select * from table_name order by column_name asc) b) a where a.row_id between record_begin_index and record_end_index 阅读全文

posted @ 2007-07-30 16:45 FrankFei 阅读(1965) 评论(2) 推荐(1)