44.20 PUSH Procedure Signature 5

This procedure appends collection values to the apex_t_clob table.

Syntax

APEX_STRING.PUSH (
  p_table  IN OUT NOCOPY apex_t_clob,
  p_values IN            apex_t_clob )

Parameters

Table 44-22 PUSH Parameters

Parameter Description
p_table The table.
p_values Values to be added to p_table.

Example

The following example appends single value and multiple values then prints the table.

DECLARE
   l_table apex_t_clob;
BEGIN
   apex_string.push(l_table, 'a');
   apex_string.push(l_table, apex_t_clob('1','2','3'));
   sys.dbms_output.put_line(apex_string.join_clobs(l_table, ':'));
END;
-> a:1:2:3