SQL 事务(Tran | Transation)与 Try…Catch 的使用

  • Post author:
  • Post category:其他



1.

SQL– Try Catch错误处理



一。语法要点:




BEGIN TRY




{ sql_statement ¦ statement_block }




END TRY




BEGIN CATCH




[ { sql_statement ¦ statement_block } ]




END CATCH




[ ; ]






异常部分:




在 CATCH 块的作用域内,可以使用以下系统函数来获取导致 CATCH 块执行的错误消息:




ERROR_NUMBER() 返回错误号。




ERROR_SEVERITY() 返回严重性。




ERROR_STATE() 返回错误状态号。




ERROR_PROCEDURE() 返回出现错误的存储过程或触发器的名称。




ERROR_LINE() 返回导致错误的例程中的行号。




ERROR_MESSAGE() 返回错误消息的完整文本。 该文本可包括任何可替换参数所提供的值,如长度、对象名或时间。


二。实例:





Step 1:



<span style="font-family: Verdana; font-size: 13px; line-height: 19px;">Create PROCEDURE SysLogError </span><br style="font-family: Verdana; font-size: 13px; line-height: 19px;" /><span style="font-family: Verdana; font-size: 13px; line-height: 19px;"><span style="white-space:pre">	</span>AS</span><br style="font-family: Verdana; font-size: 13px; line-height: 19px;" /><span style="font-family: Verdana; font-size: 13px; line-height: 19px;">BEGIN</span><br style="font-family: Verdana; font-size: 13px; line-height: 19px;" /><span style="font-family: Verdana; font-size: 13px; line-height: 19px;"><span style="white-space:pre">	</span>Insert into SystemErrorLog </span><br style="font-family: Verdana; font-size: 13px; line-height: 19px;" /><span style="font-family: Verdana; font-size: 13px; line-height: 19px;"><span style="white-space:pre">	</span>    (SPName,Description,LogTime)</span><br style="font-family: Verdana; font-size: 13px; line-height: 19px;" /><span style="font-family: Verdana; font-size: 13px; line-height: 19px;"><span style="white-space:pre">	</span>Values</span><br style="font-family: Verdana; font-size: 13px; line-height: 19px;" /><span style="font-family: Verdana; font-size: 13px; line-height: 19px;"><span style="white-space:pre">	</span>    (ERROR_PROCEDURE(),Convert(nvarchar(MAX),ERROR_LINE()) + ':' + ERROR_MESSAGE(),GetDate())</span><br style="font-family: Verdana; font-size: 13px; line-height: 19px;" /><span style="font-family: Verdana; font-size: 13px; line-height: 19px;">END</span>





Step 2:

BEGIN TRY
    BEGIN TRANSACTION;

。。。。

    COMMIT TRANSACTION;
END TRY
BEGIN CATCH
    IF @@TRANCOUNT > 0
    BEGIN
        ROLLBACK TRANSACTION;
    END

    EXECUTE [dbo].[SysLogError];
END CATCH;


2.SQL–事务回滚语句


begin tran 可以理解成新建一个还原点。

commit tran提交这个自begin tran开始的修改

rollback tran 表示还原到上个还原点。
begin Tran(Transaction) 名
go
    ...
   Commit Tran

begin
   Rollback Tran 名
end