当前位置:首页 » 存储配置 » sql存储过程错误处理

sql存储过程错误处理

发布时间: 2025-04-10 21:06:18

A. sql存储过程中事务出现错误回滚,那么在回滚之后的语句会执行吗

会的。

一般回滚操作都是写在异常处理,或是sql的最后。如果你的sql中出现错误 ,代码会立即跳转到错误处理代码上执行,比如回滚,但紧接在错误行之后的代码不会执行的。


1.update .....;

2.select ......;
3.when Exception
....rollback;
4.insert into .....

以上伪代码,如果行1出错,行2将不会执行,直接跳转到行3,然后行4 也会执行。

B. 在sql2005数据库执行存储过程出现:关键字 'SET' 附近有语法错误。 怎么处理呀代码如下

换成

CREATE proc [dbo].[GetDataSet]
@TableList Varchar(1024)='*',--搜索表的字段,比如:’id,datatime,job‘,用逗号隔开
@TableName Varchar(100), --搜索的表名
@SelectWhere Varchar(1024)='',--搜索条件,这里不用写where,比如:job=’teacher‘and class='2'
@SelectOrderId Varchar(50),--表主键字段名。比如:id
@SelectOrder Varchar(200)='', --排序,可以使用多字段排序但主键字段必需在最前面.也可以不写,比如:order by class asc
@intPageNo int=1, --页号
@intPageSize int=10 ,--每页显示数
@RecordCount int OUTPUT --总记录数(存储过程输出参数)
as
declare @TmpSelect NVarchar(4000)
declare @Tmp NVarchar(4000)
declare @pagecount int
set nocount on--关闭计数
set @RecordCount=0
set @TmpSelect = 'select @RecordCount=count(*) from '+@TableName+' where '+@SelectWhere
execute sp_executesql
@TmpSelect, --执行上面的sql语句
N'@RecordCount int OUTPUT' , --执行输出数据的sql语句,output出总记录数
@RecordCount OUTPUT
if (@RecordCount = 0) --如果没有贴子,则返回零
return 0
set @pagecount = @RecordCount/@intPageSize
if(@RecordCount%@intPageSize>0)
set @pagecount=@pagecount+1
if(@pagecount<=0)
set @pagecount=1
if(@intPageNo>@pagecount)
set @intPageNo=@pagecount
/*判断页数是否正确*/
--if (@intPageNo - 1) * @intPageSize > @RecordCount --页号大于总页数,返回错误
--set @intPageNo=@pagecount
set nocount off--打开计数
if @SelectWhere != ''
begin
set @TmpSelect = 'select top '+str(@intPageSize)+' '+@TableList+' from '+@TableName+' where '+@SelectOrderId+' not in(select top '+str((@intPageNo-1)*@intPageSize)+' '+@SelectOrderId+' from '+@TableName+' where '+@SelectWhere +' '+@SelectOrder+') and '+@SelectWhere +' '+@SelectOrder
end
else
begin
set @TmpSelect = 'select top '+str(@intPageSize)+' '+@TableList+' from '+@TableName+' where '+@SelectOrderId+' not in(select top '+str((@intPageNo-1)*@intPageSize)+' '+@SelectOrderId+' from '+@TableName+''+@SelectOrder+') '+@SelectOrder
end
execute sp_executesql @TmpSelect
return(@@rowcount)
GO

热点内容
c语言和It 发布:2025-04-25 23:18:22 浏览:692
c语言简单程序设计 发布:2025-04-25 23:13:14 浏览:593
c语言编程思路 发布:2025-04-25 23:08:08 浏览:340
安卓开发存储空间多少则为不足 发布:2025-04-25 22:54:55 浏览:540
视频课堂源码 发布:2025-04-25 22:52:55 浏览:980
庭院植物配置需要什么 发布:2025-04-25 22:46:47 浏览:984
存储卡ntfs 发布:2025-04-25 22:42:57 浏览:75
编译马列着作的专门机构是编译局 发布:2025-04-25 22:32:57 浏览:778
小米平板怎么刷安卓版 发布:2025-04-25 22:19:44 浏览:861
缓存中段 发布:2025-04-25 22:11:06 浏览:344