我需要验证datacontext对象上的connectionstring属性,以确保linq可以获得到数据库的连接。我尝试了下面的两种方法,但是,如果连接字符串无效,它们会锁定应用程序。林肯还有别的办法吗?
public static bool TestDBConnection(connectionString)
{
bool result = true;
DomainClassesDataContext db = new DomainClassesDataContext(connectionString);
try
{
// Hangs if connectionString is invalid rather than throw an exception
db.Connection.Open();
// Initially, I was just trying to call DatabaseExists but, this hangs as well if the conn string is invalid
if (!db.DatabaseExists())
{
result = false;
}
}
catch (Exception ex)
{
result = false;
logger.Fatal(ex.Message);
logger.Fatal(ex.StackTrace);
}
finally
{
db.Dispose();
}
return result;
}
最佳答案
将连接字符串中的Connection Timeout
设置为低值,如5s。
打开还不够。您可能会得到一个过时的池连接。执行查询:SELECT NULL
。
关于c# - 如何测试Linq-To-SQL ConnectionString以确保它是有效的,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/14508944/