开发 Lotus Notes 数据库以读取另一个数据库的信息

发布于 2024-08-31 20:35:42 字数 94 浏览 4 评论 0原文

我正在尝试开发一个 Lotus Notes 数据库,它可以连接到另一个 Notes 数据库并提取所有信息,如表单计数、视图等。

关于如何继续的任何建议? 谢谢

I am trying to develop a lotus notes database which can connect to another notes database and extract all the information like forms count, views etc.

Any suggestions on how to proceed?
Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

云醉月微眠 2024-09-07 20:35:42

如果需要从 Notes 数据库中提取设计信息,可以使用 Lotusscript 或 Java 代码来完成此操作。

起点是 NotesNoteCollection (Lotusscript) / NoteCollection (Java) 实例。您可以在 Designer 帮助文件中了解此类以及可用的方法/属性。笔记集合可用于提取文档以及所有设计元素。下面是一些 Lotusscript 示例:

Dim session As New NotesSession
Dim db As NotesDatabase

Set db = session.CurrentDatabase

Dim nc As NotesNoteCollection
Set nc = db.CreateNoteCollection(False)

nc.SelectForms = True
Call nc.BuildCollection

您现在拥有 Notes 表单的集合,您可以根据需要对其进行迭代/操作。

If you need to extract design information from a Notes database, you can do this with Lotusscript or Java code.

The starting point would be a NotesNoteCollection (Lotusscript) / NoteCollection (Java) instance. You can read about this class, and the methods / properties available to you, in the Designer help file. Note collections can be used to extract documents as well as all design elements. Here's some sample Lotusscript:

Dim session As New NotesSession
Dim db As NotesDatabase

Set db = session.CurrentDatabase

Dim nc As NotesNoteCollection
Set nc = db.CreateNoteCollection(False)

nc.SelectForms = True
Call nc.BuildCollection

You now have a collection of Notes forms, which you can iterate / manipulate as you see fit.

好久不见√ 2024-09-07 20:35:42

需要使用Web服务来满足此要求。

Need to use webservice for this requreiment.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文