我用脚本读取归档数据库,有个很奇怪的问题
代码如下
Dim conn
Dim tagDSNName
Set tagDSNName = HMIRuntime.Tags("@DatasourceNameRT")
Set conn = CreateObject("ADODB.Connection")
conn.CursorLocation = 3
conn.Open "Provider=WinCCOLEDBProvider.1;Catalog=" & tagDSNName.Read & ";Data Source=.\WinCC"
'MsgBox conn.State
'MsgBox tagDSNName.Read
Dim ors
Dim ocom
Set oRs = CreateObject("ADODB.Recordset")
'Set oCom = CreateObject("ADODB.Command")
'oCom.CommandType = 1
'Set oCom.ActiveConnection = conn
Set ors.ActiveConnection = conn
'oCom.CommandText = "Tag:R,'qqq\t1','2012-11-07 14:00:00.000','2012-11-07 16:00:00.000'"
ors.Source="Tag:R,1,'2012-11-08 15:00:00.000','0000-00-00 00:00:00.000'"
ors.Open
MsgBox ors.RecordCount
'MsgBox ors.State
ors.Close
conn.Close
当前时间为16:20,如果我设的时间段为2012-11-08 16:00:00.000 到2012-11-08 16:20:00.000,这样读出来的记录数为0,
如果设的开始时间为2012-11-08 00:00:00.000,结束时间设为2012-11-08 15:00:00.000,这样就能读出2万多条记录,请教这是什么原因.我12点左右才开机工作的.开始时间设2012-11-08 09:00.000,都没有记录,8点就有,而用西门子的OLE-DB TAG AND ALARM EXPORT当天的记录都能读出来.
最佳答案
有8个小时的时区差。
提问者对于答案的评价:
非常感谢,解决了
专家置评
已阅,最佳答案正确。
原创文章,作者:more0621,如若转载,请注明出处:https://www.zhaoplc.com/plc254609.html