尝试在 SQL Server 2000 中使用 Catch 吗?

发布于 2024-10-09 12:14:37 字数 53 浏览 3 评论 0原文

是否可以在SQL Server 2000中使用Try-Catch?

Is it possible using Try-Catch in SQL Server 2000?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

兲鉂ぱ嘚淚 2024-10-16 12:14:37

不,这是不可能的。

这仅来自 Sql Server 2005

检查 尝试... CATCH (Transact-SQL) 并检查其他版本

No, it is not possible.

This was only from Sql Server 2005

Check TRY...CATCH (Transact-SQL) and check the Other Versions

昵称有卵用 2024-10-16 12:14:37

不可以。Try Catch 块是在 SQL SERVER 2005 中引入的。

以下文章展示了如何使用 @@ERROR 检查错误。

了解 SQL 中的错误处理服务器2000

No. Try Catch block was introduced in SQL SERVER 2005.

Following article shows how you can use @@ERROR to check for errors.

Understanding error handling in SQL Server 2000

寻找我们的幸福 2024-10-16 12:14:37

相反,您可以使用 @@Error..

检查 这篇关于错误处理的文章

Instead you can user @@Error..

check this article about error handling

凉城凉梦凉人心 2024-10-16 12:14:37

@@ERROR 是 SQL Server 数据库引擎在服务器上执行每条语句后更新的变量。
我们可以通过打印 @@Error 看到

@@ERROR is a variable updated by the SQL Server database engine after each statement is executed on the server.
We can see by Print @@Error

冰之心 2024-10-16 12:14:37

没有 Try Catch 是 2005 年及更高版本引入的,,,你必须使用 @@Error 来处理你的异常

No Try Catch Was introduced 2005 and later version ,,,you have to use @@Error for handling your exception

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文