首页 > 数据库 >SQL Server中的try catch

SQL Server中的try catch

时间:2022-08-14 21:57:56浏览次数:49  
标签:返回 错误 -- Server try ERROR catch

语法: 

-- try catch 可以截住错误 
begin try 
    ---具体调用逻辑
end try 

begin catch 
 
      --print '出现错误!'
      --print error_message()
      --print error_number()
      if error_number()=1801 begin 
      drop database test 
      create database test 
      end
 end catch 
 
错误信息:
ERROR_NUMBER()    返回错误编号
ERROR_SEVERITY()    返回严重性
ERROR_STATES()    返回错误状态
ERROR_PROCEDURE()    返回出现错误的存储过程或触发器的名称
ERROR_LINE()    返回导致错误例程中的行号
ERROR_MESSAGE()    返回错误消息的完整文本

 

如果 TRY 块内部发生错误,则会将控制传递给 CATCH 块中包含的另一个语句组。

 

标签:返回,错误,--,Server,try,ERROR,catch
From: https://www.cnblogs.com/songjuntao/p/16586441.html

相关文章