1. 程式人生 > 其它 >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();

}