【发布时间】:2018-09-19 23:40:13
【问题描述】:
美好的一天:
快速提问:我可以在 OpenEdge 中执行动态查询吗?
例子:
def temp-table tt-num1
field f1 as int
field f2 as int.
def temp-table tt-num2
field f1 as int
field f2 as int.
def temp-table tt-num3
field f1 as int
field f2 as int.
我需要的是这样的东西:
procedure repeat-query:
for each 'variable that contains table-name' no-lock.
disp f1 f2.
end.
end procedure.
或其他可以解决我的问题的方法。
我该如何进行呢?我试图检查互联网上的动态查询,但没有运气。提前致谢。
【问题讨论】:
标签: openedge progress-4gl dynamicquery