我可以使用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? 感谢的
答案 0 :(得分:2)
将您的代码更改为以下内容:
dim search as string
search =InputBox$( "prompt","title")
Set coll=db.Search({SELECT type="} & search & {" & form="note"},Nothing,0)
您希望将“搜索”用作变量而不是搜索字符串