You can always increase the Connection Timeout property
dtryan
2010-04-23 21:16:19
There is a State property on SqlConnection that you could check
if(myConnection.State == ConnectionState.Open)
{
// perform your query
}