开发 Lotus Notes 数据库以读取另一个数据库的信息
我正在尝试开发一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果需要从 Notes 数据库中提取设计信息,可以使用 Lotusscript 或 Java 代码来完成此操作。
起点是 NotesNoteCollection (Lotusscript) / NoteCollection (Java) 实例。您可以在 Designer 帮助文件中了解此类以及可用的方法/属性。笔记集合可用于提取文档以及所有设计元素。下面是一些 Lotusscript 示例:
您现在拥有 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:
You now have a collection of Notes forms, which you can iterate / manipulate as you see fit.
需要使用Web服务来满足此要求。
Need to use webservice for this requreiment.