lotus notes db.search方法和动态@formula

时间:2014-11-10 08:30:07

标签: lotus-notes

我可以使用db.search方法动态公式搜索动态@formula吗?

如果我这样做:

Set coll=db.Search({SELECT  type="office" & form="note"},Nothing,0)

该方法会检索正确的集合,但如果我这样做:

dim search as string
search ="office"
Set coll=db.Search({SELECT  type=search  & form="note"},Nothing,0)

OR

dim search as string
search =InputBox( "prompt","title")
Set coll=db.Search({SELECT  type=search  & form="note"},Nothing,0)

该方法不会检索正确的doc集合。 是否有可能使用db.search方法搜索动态@formula? 感谢的

1 个答案:

答案 0 :(得分:2)

将您的代码更改为以下内容:

dim search as string
search =InputBox$( "prompt","title")
Set coll=db.Search({SELECT  type="} & search & {"  & form="note"},Nothing,0)

您希望将“搜索”用作变量而不是搜索字符串