5.2 p: a DBMS_OUTPUT SubstituteThe p (Put) package provides a powerful, flexible substitute (and one that requires minimal typing) for Oracle's builtin DBMS_OUTPUT.PUT_LINE package. See Chapter 7, p: A Powerful Substitute for DBMS_OUTPUT for details. 5.2.1 Toggling output from the p package
5.2.2 Setting the line separator
5.2.4 The overloadings of the l procedurePROCEDURE l (date_in IN DATE, mask_in IN VARCHAR2 := PLV.datemask, show_in IN BOOLEAN := FALSE); PROCEDURE l (number_in IN NUMBER, show_in IN BOOLEAN := FALSE); PROCEDURE l (char_in IN VARCHAR2, show_in IN BOOLEAN := FALSE); PROCEDURE l (char_in IN VARCHAR2, number_in IN NUMBER, show_in IN BOOLEAN := FALSE); PROCEDURE l (char_in IN VARCHAR2, date_in IN DATE, mask_in IN VARCHAR2 := PLV.datemask, show_in IN BOOLEAN := FALSE); PROCEDURE l (boolean_in IN BOOLEAN, show_in IN BOOLEAN := FALSE); PROCEDURE l (char_in IN VARCHAR2, boolean_in IN BOOLEAN, show_in IN BOOLEAN := FALSE); PROCEDURE l (file_in IN UTL_FILE.FILE_TYPE, show_in IN BOOLEAN := FALSE); The version of l that displays the contents of a UTL_FILE file handle can only be used in PL/SQL Releases 2.3 and beyond (and is only installed when you run the plvinstf.sql script). If you pass TRUE for the show_in argument, you will always see output from that call to p.l -- even if you have called p.turn_off earlier in the session (but only if you have enabled output from DBMS_OUTPUT). Copyright (c) 2000 O'Reilly & Associates. All rights reserved. |
|