The PLVvu (PL/Vision View) package provides a set of programs that allow you to view both stored source code and compile errors. See Chapter 15, PLVvu: Viewing Source Code and Compile Errors for details.
c_overlap INTEGER := 5;
The default and initial value for the number of lines to overlap around a line with a compile error.
PROCEDURE code
(name_in IN VARCHAR2 := NULL,
start_in IN INTEGER := 1,
end_in IN INTEGER := NULL,
header_in IN VARCHAR2 := 'Code');
Displays some or all of the lines of source code for the specified object.
PROCEDURE code_after
(name_in IN VARCHAR2 := NULL,
start_with_in IN VARCHAR2,
num_lines_in IN INTEGER := overlap,
nth_in IN INTEGER := 1);
Displays some or all of the lines of source code for the specified object that come after the n th appearance of the specified string.
PROCEDURE err
(name_in IN VARCHAR2 := NULL,
overlap_in IN INTEGER := overlap);
Displays the compile errors for the specified object, along with the immediately surrounding code. You can provide an override to the current number of overlap lines in the second argument.
PROCEDURE err (name_in IN VARCHAR2, type_in IN VARCHAR2);
Displays the compile errors for the specified object, along with the immediately surrounding code. In this version of err , you supply the program name and the program type separately (and rely on the default overlap). This is available primarily for backward compatibility to earlier versions of PLVvu.
Copyright (c) 2000 O'Reilly & Associates. All rights reserved.