sybase分页存储过程的实现_Sybase_数据库_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 数据库 > Sybase > sybase分页存储过程的实现

sybase分页存储过程的实现

 2013/8/10 4:58:07    程序员俱乐部  我要评论(0)
  • 摘要:sybase分页存储过程应该如何实现呢?这是很多人都提到的问题,下面就为您介绍sybase分页存储过程的写法,希望可以让您对sybase分页存储过程有更多的了解。createprocedureSP_PHP_PAGE@qryvarchar(16384),@iStartint,@iLimitint,@sKeyFiledvarchar(32)as/*@qrySQL语句,@iStart开始,@iLimit结束,@sKeyFiled表中的主键*/begindeclare@execsqlvarchar
  • 标签:实现 过程 存储过程 Sybase ASE

sybase分页存储过程应该如何实现呢?这是很多人都提到的问题,下面就为您介绍sybase分页存储过程的写法,希望可以让您对sybase分页存储过程有更多的了解。

    class="dp-xml">
  1. create procedure SP_PHP_PAGE @qry varchar(16384),@iStart int, @iLimit int, @sKeyFiled  varchar(32) as   
  2. /*@qry SQL语句, @iStart 开始, @iLimit 结束,@sKeyFiled 表中的主键 */  
  3. begin  
  4. declare @execsql varchar(16384)  
  5. declare @execsqltmp varchar(16384)  
  6. /*定义临时表表名*/  
  7. declare @dt varchar(10) --生成临时表的随机数  
  8. set @dt=substring(convert(varchar, rand()), 3, 10)   --一个字符型的随机数  
  9. set rowcount @iLimit     
  10.  
  11. if(@sKeyFiled is null)  
  12. begin      
  13. set @execsql = stuff(@qry,charindex('select',@qry),6,'select number(*) as sybid,')             
  14. set @execsqltmp = ' select * from #temptable' + @dt + ' where sybid>' || convert(varchar,@iStart) || ' and sybid <= ' || convert(varchar,(@iStart/@iLimit+1)*@iLimit)    
  15.  
  16. end  
  17. else  
  18. begin  
  19. set @execsql = stuff(@qry,charindex('select',@qry),6,'select number(*) as sybid,' || @sKeyFiled || ' ,@' )            
  20. set @execsql =  stuff(@execsql,charindex(',@',@execsql),charindex('from',@execsql)-charindex(',@',@execsql),'' )            
  21. set @execsqltmp = ' select '|| @sKeyFiled ||' from #temptable' + @dt + ' where sybid>' || convert(varchar,@iStart) || ' and sybid <= ' || convert(varchar,(@iStart/@iLimit+1)*@iLimit)    
  22. set @execsqltmp = stuff(@qry,charindex('where',@qry),5,' where '|| @sKeyFiled || ' in ('|| @execsqltmp ||') and ')     
  23. end  
  24. set @execsql = stuff(@execsql, charindex('from',@execsql),4,'into #temptable' + @dt + ' from')  
  25. select (@execsql) as sql, @execsqltmp as sqlTmp  
  26. set rowcount 0  
  27. end  
  28.  

调用

  1. $sSQL = " exec SP_PHP_PAGE '$sSQL',$iStart,$iLimit,'iId'";  
  2. $pRow = $this->m_hDb->GetResult ( $sSQL );  
  3. $this->m_hDb->Excute ( $pRow->sql );  
  4. $pData = $this->m_hDb->Select($pRow->sqlTmp);  

发表评论
用户名: 匿名