当前位置: 代码迷 >> Lotus >> db.Search获取2个时间段内的数据解决方法
  详细解决方案

db.Search获取2个时间段内的数据解决方法

热度:122   发布时间:2016-05-05 06:59:50.0
db.Search获取2个时间段内的数据
searchFormula$={select form= "(SysInfoPublish_Form)" & @text(ReleaseDate)> = "}+doc.StartDate(0)+{ "& @text(ReleaseDate) <= "}+doc.EndDate(0)+{"} 
Set dcc=db.Search(searchFormula$,Nothing,0) 
If dcc.Count> 0 Then 
Set doc=dcc.GetFirstDocument 
While Not(doc Is Nothing) 
Msgbox "这里是一些文档的操作 " 
Set doc = dcc.GetNextDocument(doc) 
Wend 
End If 


错误号4005:Notes error: Formula Error (select form= "(SysInfoPublish_Form)" & @text(ReleaseDate)> = "2010-11-16 "& @text(ReleaseDate) <= "2010-11-16")
第一行报错

------解决方案--------------------
那个"> ="的写法错误, 应该是">="
  相关解决方案