I am having problems with a timeout when working with long sql queries, a data set for which for long queries:
static public DataSet Getxxxx(Guid xxxx) { DataSet ds = SqlHelper.ExecuteDataset(ConnectionString, CommandType.StoredProcedure, "GetAllxx", new SqlParameter("@productxx", productxx)); return ds; }
Where can I set the timeout, I use the Microsoft application block version 2.0.
source share