标签: sql-server
我正在使用sql server 2012
以下是查询:
begin try select try_parse(4 as xml) end try begin catch print 'in catch' select ERROR_LINE() select ERROR_MESSAGE() select ERROR_SEVERITY() end catch
我尝试将int转换为xml,因为它是一个错误操作,但在catch块中没有检测到。
我在做什么错误或错误?
任何帮助?