Timeout 时间已到。在操作完成之前超时时间已过或服务器未响应。 130

PublicOverloadsFunctionQueryData(ByValstrSqlAsString,ByValtabNameAsString)AsDataSetDi... Public Overloads Function QueryData(ByVal strSql As String, ByVal tabName As String) As DataSet
Dim tmpDA As SqlDataAdapter
Dim tmpDS As DataSet
If tabName.Trim().Length = 0 Then
tabName = "TEMP"
End If
tmpDS = New DataSet
Try
tmpDA = New SqlDataAdapter(strSql, Me.m_StrCon)
tmpDA.MissingSchemaAction = MissingSchemaAction.AddWithKey
tmpDA.Fill(tmpDS, tabName)‘单步到这里catch到异常: Timeout 时间已到。在操作完成之前超时时间已过或服务器未响应。求高手解答~~貌似跟CommandTimeOut没有关系
Catch ex As Exception
Me.m_ErrorMessage = ex.Message
Finally
If Not tmpDA Is Nothing Then
If Not tmpDA.SelectCommand Is Nothing Then
If Not tmpDA.SelectCommand.Connection Is Nothing Then
tmpDA.SelectCommand.Connection.Dispose()
End If
tmpDA.SelectCommand.Dispose()
End If
tmpDA.Dispose()
tmpDA = Nothing
End If
End Try

Return tmpDS
End Function
展开
 我来答
匿名用户
2015-02-14
展开全部
不知道你是哪种连接字符串的。。给你提供其中一个吧 如果还不行就M我吧。。对了。。刚看错了。。Connect Timeout=500;才是要加的内容!!!
<appSettings>
<add key="sqlconn" value="Data Source=server1;Initial Catalog=database;User ID=sa;Password=sa;Max Pool Size=150;Connect Timeout=500;"/>
</appSettings>
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式