Skip to Content
Advanced Oracle PL/SQL Programming with Packages
book

Advanced Oracle PL/SQL Programming with Packages

by Steven Feuerstein
October 1996
Intermediate to advanced
687 pages
16h 41m
English
O'Reilly Media, Inc.
Content preview from Advanced Oracle PL/SQL Programming with Packages

5.2. p: a DBMS_OUTPUT Substitute

The 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 for details.

5.2.1. Toggling output from the p package

PROCEDURE turn_on;

Turn on output from the p.l procedure (the default). Equivalent to calling DBMS_OUTPUT.ENABLE to enable output from DBMS_OUTPUT.

PROCEDURE turn_off;

Turn off output from the p.l procedure. This setting can be overridden in a particular call to p.l by specifying TRUE for the final show argument.

5.2.2. Setting the line separator

PROCEDURE set_linesep (linesep_in IN VARCHAR2);

Sets the character(s) to be recognized as the line separator in your PL/SQL code (default is =). A line that consists only of the line separator will be displayed by p.l as a blank line.

FUNCTION linesep RETURN VARCHAR2;

Returns the line separator character(s).

5.2.3. Setting the line prefix

PROCEDURE set_prefix (prefix_in IN VARCHAR2 := c_prefix);

Sets the character(s) used as a prefix to the text displayed by the p.l procedure.

The c_prefix constant is defined in the p package as CHR(8).

FUNCTION prefix RETURN VARCHAR2;

Returns the prefix character(s).

5.2.4. The overloadings of the l procedure

PROCEDURE 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 ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Oracle Database 12c PL/SQL Programming

Oracle Database 12c PL/SQL Programming

Michael McLaughlin
Oracle PL/SQL for DBAs

Oracle PL/SQL for DBAs

Arup Nanda, Steven Feuerstein
Expert PL/SQL Practices for Oracle Developers and DBAs

Expert PL/SQL Practices for Oracle Developers and DBAs

John Beresniewicz, Adrian Billington, Martin Büchi, Melanie Caffrey, Ron Crisco, Lewis Cunningham, Dominic Delmolino, Sue Harper, Torben Holm, Connor McDonald, Arup Nanda, Stephan Petit, Michael Rosenblum, Robyn Sands, Riyaj Shamsudeen

Publisher Resources

ISBN: 1565922387Supplemental ContentCatalog PageErrata