55.22 PUSH Procedure Signature 2

This procedure appends a value to apex_t_clob table.

Syntax

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

Parameters

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

Example

The following example appends two values then prints the table.

DECLARE
    l_table apex_t_clob;
BEGIN
    apex_string.push(l_table, 'a');
    apex_string.push(l_table, 'b');
    sys.dbms_output.put_line(apex_string.join_clobs(l_table, ':'));
END;

Output:
-> a:b