Does Oracle 11g support JSON? I mean things like manipulating JSON objects in PL / SQL queries. I know that Oralcle 12c has support for these things, but 11g doesn't seem to.
My main problem is whether it is possible to handle JSON objects returned from RESTfull API calls (using the package UTL_HTTP) in PL / SQL code.
This is what I call the RESTfull API:
req := UTL_HTTP.BEGIN_REQUEST('https://xxxx/api/job/all', 'GET', 'HTTP/1.1');
UTL_HTTP.set_header(req, 'Content-Type', 'application/json');
UTL_HTTP.set_header(req, 'apikey','xxxxx');
resp := UTL_HTTP.GET_RESPONSE(req);
Then you need to somehow save the received JSON data in the tables. Enrichment of my Oracle: Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64-bit production.
Any thoughts?
Thank.
source
share