Hi All,
I have the following code for a pl/sql region:
DECLARE
l_cursor SYS_REFCURSOR;
BEGIN
apex_json.initialize_output(p_http_header => false);
OPEN l_cursor FOR select * from st;
apex_json.write(l_cursor);
END;
This gives me a nice JSON-formatted output.
Now, I would like to use is as data-source for one of the popular charting librararies like fusion-charts, anycharts, etc. which accept a JSON format.
How can I do that?