C# 中管理 SqlException 的一个问题
我想写一个类来管理sqlExceptions。此类将为每个 sqlException 以我的语言显示一条消息。
但是我如何收集所有错误代码或比其他错误代码出现次数更多的部分错误代码?
I want to write a class to manage sqlexceptions. This class will display a message in my language for each sqlexception.
But how can i gather all error codes or part of error codes that occur more than others?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 SQL 查询
SELECT * FROM sysmessages
获取信息。更多信息和错误代码列表如下:http://technet.microsoft.com/en-us/library/cc917589.aspx
You can get the information with the SQL Query
SELECT * FROM sysmessages
More info and a list of error codes here: http://technet.microsoft.com/en-us/library/cc917589.aspx