检查数据库是否引发特定异常
使用休眠;
我正在尝试在表上插入多个值,该表在某些列上具有唯一索引。
我想知道特定插入是否会因违反唯一约束而引发异常。
那么,我应该捕获哪种特定的异常类型?我只想抓住这一特定的一个,让其他所有的都上去。
多谢!
using Nhibernate;
I'm trying to insert several values a on table which has an unique index on some columns.
I'd like to know if a particular insert raises an exception for having violated the unique constraint.
So, which particular exception type should i catch? I only want to catch this particular one and let all others go up.
Thanks a lot!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
恐怕没有什么特别的例外。您必须捕获 ADO NET 异常并查看内部异常文本。
恕我直言,你的方法并不是更合适。您应该在插入之前查询数据库以检查数据是否违反唯一约束。如果是这样,那么您就不会插入该记录。
I'm afraid that there is no special exception for that. You will have to catch ADO NET exceptions and look on the inner exception text.
IMHO your approach is not the more appropriate. You should query the DB in order to check BEFORE the insert if the data will violate the unique constraint. If it does, then you don't insert the record.
您需要实现
ISQLExceptionConverter
。检查 使用 NHibernate ISqlExceptionConverter 的自定义异常 和 http://fabiomaulo.blogspot.com/2009/06/improving-ado-exception-management-in .html 为例。
You need to implement
ISQLExceptionConverter
.Check Custom exception using NHibernate ISqlExceptionConverter and http://fabiomaulo.blogspot.com/2009/06/improving-ado-exception-management-in.html for examples.