Net Core教程

C#接口访问超时时间修改

本文主要是介绍C#接口访问超时时间修改,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

1.数据库连接字符串中添加对数据库的访问时间  Connect Timeout=500 单位秒。默认30秒

eg.

<add key="ConnectionString" value="Data Source=1.1.1.1;Initial Catalog=aa;User ID=sa;PassWord=psd;Connect Timeout=500" />

 

2.web.config中添加executionTimeout 时间,指示在请求被 ASP.NET 自动关闭前允许执行的最大秒数。单位秒 默认90秒,加在httpRuntime标签中。

eg.

<httpRuntime targetFramework="4.6" executionTimeout="500"  />

 

3.在接口中设置连接时间,给SqlCommand 的实体设置CommandTimeout 时间.单位秒

eg.

using (SqlConnection cnn = new SqlConnection(ConfigurationManager.AppSettings["SqlConnStr"]))
{
cnn.Open();

SqlCommand command = new SqlCommand();//因需要加长超时时间,使用sqlcommand方法
command.CommandTimeout = 600;//十分钟
//指定Command对象所使用的Connection对象
command.Connection = cnn;
//指定Command对象用于执行SQL语句
command.CommandType = CommandType.Text;
//指定要执行的SQL语句
command.CommandText = totalCountSql;//要执行的SQL语句
//执行查询操作,返回单个值
var count = command.ExecuteScalar().ToString();

 dr1.Close();

cnn.Close();

}

 

这篇关于C#接口访问超时时间修改的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!