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;
}
Exception ::
"Timeout expired. The timeout period elapsed prior to completion of
the operation or the server is not responding."
When I pass parameters to stored procedure its caught an exception and displaying above
message".How to increase command timeout to 200 in webconfig
file. I searched in google
but no optimized result.
You can set it on your command object also
cmd.CommandTimeout = 60;
Specify your time in seconds.
It can be set in the connectionstring, like the following where it is set to 200 seconds.
"Data Source=(local);Initial Catalog=AdventureWorks;Integrated Security=SSPI;Connection Timeout=200"
Source
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With