打开数据库连接时C#无法捕获错误?

时间:2018-03-08 22:26:14

标签: c# database access

我在我的Windows窗体应用程序中编写了一个函数,它将根据打开数据库连接的成功返回true或false,但是我的try catch块无法捕获抛出的异常。

    private bool TestConnect()
    {
        try
        {
            conn.Open();
            return true;
        }
        catch (OleDbException e) { return false; }
    }

抛出错误:

System.Data.OleDb.OleDbException

请帮助,我不能为我的生活把这一个想出来!

1 个答案:

答案 0 :(得分:-1)

我想通了,我需要提醒VS我想要除了这个错误