[Stackoverflow] [Progress OpenEdge ABL] How to compare query text and list of buffers, using OpenEdge debugger?

Status
Not open for further replies.
D

Dominique

Guest
I'm working with appBuilder, procedure editor from OpenEdge Progress release 11.6.

Recently I've also started working with the OpenEdge Debugger, also version 11.6.

I have some troubles with the following lines of source code:

Code:
txt_Query = "FOR EACH Table1, ...".
...
handle_Query:SET-BUFFERS ("Table1", "Table2", ...).
...
handle_Query:QUERY-PREPARE(txt_Query).

The troubles are expressed by error message 7326, mentioning that the order of the buffers is wrong.

This means that the order of the tables, mentioned in txt_Query and handle_Query:SET-BUFFERS() is different.

I'd like to check the current order, using the debugger, but this is quite a burden, as, when viewing handle_Query in the dataview, I don't see the names of the buffers, but I see something like:

Code:
MemberBuffer(1) 1063
MemberBuffer(2) 1064
MemberBuffer(3) 1065
MemberBuffer(4) 1066
MemberBuffer(5) 1067

Does anybody know how to (easily) view this?

Thanks in advance

Continue reading...
 
Status
Not open for further replies.
Top