Om te controleren op een time-out, geloof ik dat u de waarde van ex.Number controleert. Als het -2 is, heb je een time-outsituatie.
-2 is de foutcode voor time-out, geretourneerd door DBNETLIB, het MDAC-stuurprogramma voor SQL Server. Dit is te zien door Reflector te downloaden en onder System.Data.SqlClient.TdsEnums te kijken naar TIMEOUT_EXPIRED.
Uw code zou luiden:
if (ex.Number == -2)
{
//handle timeout
}
Code om mislukking aan te tonen:
try
{
SqlConnection sql = new SqlConnection(@"Network Library=DBMSSOCN;Data Source=YourServer,1433;Initial Catalog=YourDB;Integrated Security=SSPI;");
sql.Open();
SqlCommand cmd = sql.CreateCommand();
cmd.CommandText = "DECLARE @i int WHILE EXISTS (SELECT 1 from sysobjects) BEGIN SELECT @i = 1 END";
cmd.ExecuteNonQuery(); // This line will timeout.
cmd.Dispose();
sql.Close();
}
catch (SqlException ex)
{
if (ex.Number == -2) {
Console.WriteLine ("Timeout occurred");
}
}