以下函数用于查询“发送至计算机”的记录和非“公报”的记录。
运行此查询时,会发生以下错误:
“时间已过。在操作完成或服务器未响应之前已经过了超时时间”
如何解决此错误?
我的代码和数据是:
Blockid ParcelNo动作
51024401 10发送至计算机
51024401 11发送至计算机
51024401 10宪报刊登
51024401 13发送至计算机
51024401 14发送至计算机
51024401 15发送至计算机
51024401 15 Gazetted`
结果应该是:
Blockid ParcelNo动作
51024401 11发送至计算机
51024401 13发送至计算机
51024401 14发送至计算机
Public Function loadLPforGazette(ByVal blockID As Integer) As DataSet
Dim sql As String
sql = "select a.blockid, a.parcelno, a.schedulefileno from landparcels a "
sql = sql + "join actions b on(a.blockid = b.blockid and a.parcelno = b.parcelno) "
sql = sql + "where b.blockid = " & blockID & " and b.actiontaken = 'Send To Computer' "
sql = sql + "and not exists(select 'x' from actions x "
sql = sql + "where x.actiontaken = 'Gazetted' "
sql = sql + "and b.blockid = x.blockid and b.parcelno = x.parcelno) order by a.blockid, a.parcelno"
'********************* Load LandParcel Table **************************************************
myDALand = New SqlDataAdapter(sql, sqlCon)
myDSLand = New DataSet()
myDALand.Fill(myDSLand, "Landparcles")
'********************* End Load LandParcel Table ***********************************
loadLPforGazette = myDSLand
End Function