59.99 PRN Procedure
This procedure prints a given CLOB to the HTP buffer.
Syntax
APEX_UTIL.PRN (
p_clob IN CLOB,
p_escape IN BOOLEAN DEFAULT TRUE );
Parameters
Parameter | Description |
---|---|
p_clob |
The CLOB. |
p_escape |
If TRUE (default), escape special characters, using apex_escape.html.
|
Example
The following example prints l_clob and escape special characters.
DECLARE
l_clob clob := '<script>alert(1)</script>';
BEGIN
apex_util.prn (
p_clob => l_clob,
p_escape => true );
END;
Parent topic: APEX_UTIL