所有类型的 sql 异常列表
如何获取所有 SQL 异常的名称?在我的项目中处理它们?谢谢。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何获取所有 SQL 异常的名称?在我的项目中处理它们?谢谢。
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
我认为你的意思是错误号。
您可以那里获取数字列表及其描述。
然而它可能并不完整,因为不同的数据库也可能使用一些额外的代码。
因此,在您的情况下,您可能希望捕获 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.
System.Data.SqlClient
命名空间中只有一种异常类型,那就是SqlException
。There is only one exception type in the
System.Data.SqlClient
namespace, and that'sSqlException
.