如何使用 ODBC 获取视图的 Lotus 数据库列名称
我目前使用 NotesSQL 驱动程序设置了到 Lotus Notes 数据库的 ODBC 连接,该驱动程序用于在 Cognos BI 8.4 中创建报告。 我需要在已导入 Cognos Framework Manager 的视图中查询编程列名称(字段名称),因为我需要一种动态方式来获取所有列名称(字段名称),但不知道如何实现。
必须有某种 SQL 来执行此操作(否则 Cognos Framework manager 如何获取所有列名称?)我只是不知道如何。
我只熟悉在 DB2 中执行此操作。
I currently have an ODBC connection setup to a Lotus Notes db using the NotesSQL Driver which is used to create reports in Cognos BI 8.4.
I need to query for the programmatic column names (field names) in a view that I've imported into Cognos Framework Manager, since I need a dynamic way of getting all them, but can't figure out how.
There has to be some sort of SQL to do this (other wise how does Cognos Framework manager get all the column names?) I just don't know how.
I'm only familiar with doing this in DB2.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
ODBC 函数
SqlColumns
将返回列名称。更多信息可以在 NotesSQL 文档。The ODBC function
SqlColumns
will return the column names. More info can be found here in the NotesSQL documentation.