NotesDatabase搜索条件

时间:2014-06-01 14:46:30

标签: lotus-notes lotusscript

使用此代码:

Set col = db.Search("Form=""formname"" & id=212", time, 0)

我明确地给出搜索功能212,但是如果我想给出变量

该怎么办
dim var as Integer

我的搜索结果如何,因为这不起作用:

Set col = db.Search("Form=""formname"" & id=var", time, 0)

1 个答案:

答案 0 :(得分:5)

Set col = db.Search("Form=""formname"" & id=" + Cstr(val), time, 0)

应该有用。

Cstr()将整数值转换为字符串。