Minifying APEX_JSON CLOB Output
Firstly a walk-through of the different modes of apex_json.initialize_clob_output
For example, I have this code in a Dynamic Content Region.
DECLARE
l_result CLOB;
c sys_refcursor;
BEGIN
apex_json.initialize_clob_output;
open c for
...
mattmulvaney.hashnode.dev3 min read