gpt4 book ai didi

c# - 捕获具有特定错误代码的 oledb 异常

转载 作者:太空宇宙 更新时间:2023-11-03 11:10:54 25 4
gpt4 key购买 nike

我正在 try catch 重复键违规。我可以在 Intellisense 弹出窗口中看到 System.OleDB.OleDBException,但内部异常为空。如何访问 System.OleDB.OleDBException 中的错误代码?

格雷格

try 
{
MyData.ConExec(sSQL);
}
catch (Exception ex)
{
OleDbException innerException = ex.InnerException as OleDbException;
if (innerException.ErrorCode == -2147217873)
{
// handle exception here..
}
else
{
throw;
}
}

最佳答案

不要声明异常的实例。如果这样做,它肯定会返回空的。

try
{
MyData.ConExec(sSQL);
}
catch (OleDbException ex)
{
// handle excpetion here...

if (ex.ErrorCode == -2147217873)
{

}
}
catch (Exception e)
{
// if other exception will occur
}

关于c# - 捕获具有特定错误代码的 oledb 异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14077708/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com