要检查超时,我相信您检查 ex.Number 的值。如果它是-2,那么你有一个超时情况。
-2 是超时的错误代码,从 SQL Server 的 MDAC 驱动程序 DBNETLIB 返回。这可以通过下载Reflector并在 System.Data.SqlClient.TdsEnums 下查看 TIMEOUT_EXPIRED 来查看。
您的代码将显示为:
if (ex.Number == -2)
{
//handle timeout
}
演示失败的代码:
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");
}
}