如何在try-catch中使用timeout ?



我有一个尝试捕获oledbconnection:

try
{
        OleDbConnection Connection;
        using (Connection = new OleDbConnection("Provider=MSDAORA.1;Data Source=DATABASE:1521/orcl//orcl1;Persist Security Info=True;Password=PASS;User ID=USER"))
        {
            Connection.Open();
            v1 = 1;
            Connection.Close();
        }
}
catch (Exception)
{
        v1 = 0;
}

当我无法连接数据库时,尝试捕获并返回v1 = 0。它的工作,但当连接等待这么长时间(例如30-40秒),尝试尝试连接和页面等待这么长时间。

我尝试Connect Timeoutoledbconnection,但不工作。

我需要使用try几秒钟,如果有问题,需要去catch。

我该怎么做呢?

假设您使用的是。net 4.5,那么您可以受益于任务超时和异步等待功能:

int timeout = 1000;
var task = SomeOperationAsync();
if (await Task.WhenAny(task, Task.Delay(timeout)) == task) {
    // task completed within timeout
} else { 
    // timeout logic
}

更多信息在这里

如果你坚持使用。net 3.5或更早的版本:

using System.Threading;
class Program {
    static void DoSomething() {
        try {
            // your call here...
            obj.PerformInitTransaction();         
        } catch (ThreadAbortException) {
            // cleanup code, if needed...
        }
    }
    public static void Main(params string[] args) {
        Thread t = new Thread(DoSomething);
        t.Start();
        if (!t.Join(TimeSpan.FromSeconds(30))) {
            t.Abort();
            throw new Exception("More than 30 secs.");
        }
    }
}

更多信息在这里

我在您的连接字符串中没有看到'Connect Timeout={seconds};"如前所述

ConnectionTimeout属性是只读的。您必须通过使用Connect timeout =30;

在连接字符串中设置超时时间。

不要忘记';'

相关内容

  • 没有找到相关文章

最新更新