将临时表值写入 .csv 文件
我们动态创建了一个临时表。我们希望将完整的表格放入 .csv 文件中。怎么办?
DEF VAR ttH AS HANDLE NO-UNDO.
ttH:CREATE-LIKE(hBuffer).
ttH:Temp-table-prepare("tmytable")
We have created one temp-table dynamically . and we want to out put the complete table into a .csv file. how to do?
DEF VAR ttH AS HANDLE NO-UNDO.
ttH:CREATE-LIKE(hBuffer).
ttH:Temp-table-prepare("tmytable")
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
因为您动态创建了临时表,所以不能使用 EXPORT 语句(至少据我所知)。不过,您可以做的是首先动态输出表的字段名称,然后输出字段值。就像这样:
请注意,这可能不适用于大量表条目!
Because you created your temp-table dynamically, you cannot use the EXPORT statement (at least to my knowledge). What you can do though is dynamically output first the fieldnames and then the field values of your table. Like so:
Just note that this might not perform for large quantities of table entries!
请参阅进度知识库 P4410用于范围处理语法。您可能还需要在 QUERY-PREPARE 之前将 FORWARD-ONLY=TRUE 添加到查询中,以可能提高性能。
See Progress KB P4410 for extent handling syntax. You might also want to add FORWARD-ONLY=TRUE to the query before QUERY-PREPARE to possibly boost performance.