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#,eg,接口,command,SQL,cnn,超时,SqlCommand 来源: https://www.cnblogs.com/xixi233/p/15974632.html