The debugger / Debugger commands |
The frame command selects and prints a stack frame.
frame [ address | number ]
The frame command allows you to move from one stack frame to another, and to print the stack frame that you select. Each stack frame is associated with one call to one function within the currently executing program. Without an argument, the current stack frame is printed.
See stack frames for a brief discussion of frames.
(fgldb) frame #0 query_cust() at testquery.4gl:42 (fgldb)