temp tables in dubugger

jmac13

Member
Hi I'm using open edge 10.2B.

I was wondering in the dubugger can you go through the records in a temp table? cause i can only see the information of the record im on. Would be helpful to be able to go look through via the dubugger a what has been created, is this possible?

Couldnt see anything in the document..

thanks in advance
 
Lets just think about the question:
Is it possible to navigate through a buffer table, the table is NOT real data.
So I don`t think it would be possible.
 
Unfortunately the debugger is rather crippled in this aspect. However, if you know where you are interested in the temp-table records you can add debugging code to dump the contents of the temp-table to a file:

Code:
DEFINE BUFFER ttfoo-debug FOR ttfoo.
BUFFER ttfoo-debug:HANDLE:WRITE-XML ( "file", "ttfoo.xml", TRUE ).
 
Back
Top