可能重複:
How to check if connection string is valid?有沒有標準的.NET方法來測試SqlConnection字符串是否工作?
目前我正在做這樣的:
internal bool CheckConnection()
{
using (SqlConnection testConn = new SqlConnection(this.ConnectionString))
{
try
{
testConn.Open();
}
catch (SqlException)
{
return false;
}
}
return true;
}
有沒有更好的方式來做到這一點?
這是重複的。如果可能,會刪除。 – Crisfole 2010-12-02 19:00:50