2

我正在尝试捕获重复的密钥违规行为。我可以在 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;
}
}
4

1 回答 1

2

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

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

    if (ex.ErrorCode == -2147217873)
    {

    }
}
catch (Exception e)
{
    // if other exception will occur
}
于 2012-12-29T01:06:21.437 回答