49.17 PUSH Procedure Signature 2

This procedure appends a value to apex_t_clob table.

Syntax

PUSH (
   p_table IN OUT NOCOPY apex_t_clob,
   p_value IN            apex_t_clob );

Parameters

Table 49-19 PUSH Procedure Signature 2 Parameters

Parameter Description
p_table Defines the table.
p_value Specifies the value to be added.

Example

The following example demonstrates how to append two values, then prints the table.

DECLARE
    l_table apex_t_clob;
    1_clob clob;    
BEGIN
   apex_string.push(l_table, 'a');
   l_clob := 'large quantity of text...';
   apex_string.push(l_table, l_clob);
   sys.dbms_output.put_line(apex_string.join_clobs(l_table, ':'));
END;
-> a:large quantity of text...