摘要: CREATE PROC innerProc( @pageIndex INT , @pageSize int)ASBEGIN DECLARE @strQureySql NVARCHAR(1000) --查询语句 DECLARE @strStartdNum VARCHAR(1... 阅读全文
posted @ 2015-04-29 18:31 清空回声 阅读(156) 评论(0) 推荐(0) 编辑
摘要: CREATE PROC pain( @PageSize int , -- 记录条数 @PageIndex int -- 页码 )AS declare @strBeginNum INT --起始页 declare @strEndNum... 阅读全文
posted @ 2015-04-29 14:46 清空回声 阅读(112) 评论(0) 推荐(0) 编辑
摘要: Create Or Replace procedure p_select_tcp5page( v_strPageSize In Varchar2, --每页显示的数量 v_strPageNum In Varchar2,... 阅读全文
posted @ 2015-04-29 13:44 清空回声 阅读(134) 评论(0) 推荐(0) 编辑
摘要: CREATE PROC t( @pageIndex INT , @pageSize INT , @pageSum INT output)ASDECLARE @DataCounts INT SET @DataCounts=(SELECT COUNT(*) FROM sysmenu)... 阅读全文
posted @ 2015-04-29 13:43 清空回声 阅读(102) 评论(0) 推荐(0) 编辑
摘要: CREATE PROC pain( @PageSize int , -- Page size @PageIndex int -- Page index )AS declare @strBeginNum... 阅读全文
posted @ 2015-04-29 13:42 清空回声 阅读(99) 评论(0) 推荐(0) 编辑