C# SQL 连接超时



我有一个非常奇怪的情况,即用C# .NET编写的应用程序的SQL连接超时。

SqlCommand.ExecuteNonQuery()用于在 SQL Server 中依次执行多个脚本。每个脚本都包含一个命令,用于仅创建一个表(根本没有数据更新/插入/删除操作)。出于某种原因,在其中一个脚本中,SqlCommand.ExecuteNonQuery会引发超时异常。

当我在SQL Server Management Studio中执行所有这些表的创建时,它们几乎可以立即执行。

有没有人知道从应用程序创建表时可能导致超时的原因?

所有 sql 脚本看起来都类似于以下内容:

.SQL:

create table dbo.Test  
(  
  Code varchar(10) not null  
, Name varchar(50) not null  
, other columns...  
  primary key  
, unique key  
, foreign key
)

脚本使用以下代码从 C# 提供:

try
{
  using (SqlConnection conSQL = new SqlConnection ("[connection string]"))
  {
     using (SqlCommand cmdSQL = new SqlCommand(sSQL, conSQL))
     {
       cmdSQL.CommandTimeout = iTimeOut;
       conSQL.Open();
       cmdSQL.ExecuteNonQuery(); // this is where it jumps to catch part and                                                                            
                                 // throws out timeout exception
       conSQL.Close();
     }
  }
}
catch(Exception ex)
{
  throw (ex);
}            

这发生在测试服务器上,这意味着当应用程序执行这些脚本时,服务器上不会发生任何其他事情。

您可以通过更新 machine.config 来覆盖 sql 事务的默认超时设置,可在此处找到:

%windir%Microsoft.NETFramework[version]configmachine.config

64 位

%windir%Microsoft.NETFramework64[version]configmachine.config 

machine.config末尾添加或更新以下行:

<system.transactions>
   <machineSettings maxTimeout="01:00:00" />  --> set this to desired value.
 </system.transactions>
</configuration> 

如果上述方法不起作用,您也可以通过代码指定SqlCommand Timeout setting

  using (SqlConnection connection = new SqlConnection(connectionString)) {
     connection.Open();
     SqlCommand command = new SqlCommand(queryString, connection);
     // Setting command timeout in seconds:
     command.CommandTimeout = 3600;
     try {
        command.ExecuteNonQuery();
     }
     catch (SqlException e) {
        Console.WriteLine(e);
     }
  }

更多信息在这里

只需停止它运行并再次运行,您的问题就会得到解决....通常,只有当有很多文件要加载时,它才会第一次发生,这可能是Visual Studio中的错误。新增功能:停止后尝试刷新打开的网页(在显示错误的浏览器中),而不是再次重新启动它...

相关内容

  • 没有找到相关文章

最新更新