所有类型的 sql 异常列表

发布于 2024-09-19 18:56:18 字数 38 浏览 3 评论 0 原文

如何获取所有 SQL 异常的名称?在我的项目中处理它们?谢谢。

How can i gets the name of all SQL exceptions? For handling them in my project? Thanks.

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

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

发布评论

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

评论(2

掩耳倾听 2024-09-26 18:56:18

我认为你的意思是错误号。
您可以那里获取数字列表及其描述
然而它可能并不完整,因为不同的数据库也可能使用一些额外的代码。

因此,在您的情况下,您可能希望捕获 SqlException,获取其错误集合 (SqlErrorCollection) 并检查该集合的每个 SqlError 中的 Number 属性。

UPD:
由于您想翻译错误,我认为最好寻找严重性(SqlException.Class 属性),如果您使用的是 MS SQL,您可以在 SYSMESSAGES 数据库中查找该严重性,看起来可能已经有适合您的语言的翻译。

I think you mean error number.
You can get a list of numbers and their descriptions there.
However it may not be complete, because different databases may use some additional codes as well.

So in your case you may want to catch SqlException, get its error collection (SqlErrorCollection) and check for Number property in every SqlError of this collection.

UPD:
Since you want to translate the error, I think it is better to look for severities (SqlException.Class property) and if you are using MS SQL you can look up that severity in SYSMESSAGES database, it looks that there may be translation already for your language.

永不分离 2024-09-26 18:56:18

System.Data.SqlClient 命名空间中只有一种异常类型,那就是 SqlException

There is only one exception type in the System.Data.SqlClient namespace, and that's SqlException.

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