public DataTable GetDailycardReport(DailyReportPL dailyreportpl)
{
DataTable dtGetDailycardReport = new DataTable();
try
{
SqlParameter[] arParams = new SqlParameter[2];
arParams[0] = new SqlParameter("@farmername", typeof(string));
arParams[0].Value = dailyreportpl.farmername;
arParams[1] = new SqlParameter("@batchno", typeof(int));
arParams[1].Value = dailyreportpl.batchno;
dtGetDailycardReport.Load(SqlHelper.ExecuteReader(connection.ConnectionString, CommandType.StoredProcedure, "k_DailyCardreport", arParams));
}
catch (Exception ex)
{
//DBExceptionPublisher exc = new DBExceptionPublisher();
//exc.Publish(ex);
}
finally
{
}
return dtGetDailycardReport;
}
例外 ::
"Timeout expired. The timeout period elapsed prior to completion of
the operation or the server is not responding."
当我将参数传递给存储过程时,它捕获了一个异常并显示上面的消息“。如何在文件中将命令超时增加到 200。webconfig
我在谷歌搜索但没有优化结果。