问题描述
我在SQL Server上需要30秒到40秒才能返回数据的查询
我尝试从我的页面致电的地方
它给我那个错误
超时时间已到.在操作完成之前超时时间已经过去,或者服务器没有响应.
i have query that take from 30 second to 40 second on sql server to return data
where i try to call from my page
it give me that error
Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding.
推荐答案
using (SqlConnection cn = new SqlConnection(Configuration.DefaultConnectionString))
{
using (SqlCommand cmd = new SqlCommand(query, cn))
{
cmd.CommandTimeout = 60;
cn.Open();
...
或在web.config中指定连接超时(我不建议这样做).
在此处的更多信息 http://msdn. microsoft.com/en-us/library/system.data.sqlclient.sqlcommand.commandtimeout(v=vs.110).aspx [ ^ ]
欢呼声
Or specify the timeout for the connection in the web.config (which I will not recommend).
More info here http://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlcommand.commandtimeout(v=vs.110).aspx[^]
Cheers
这篇关于超时过期的SQL Server问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!