I'm trying to add a json and add a clob to it. On the Oracle website, it says that the json_object_t.put function only supports varchar, just wondering if anyone knows a workaround?
The database version we are using is 12c, but we might migrate to 21c
declare
j json_object_t;
v_clob clob; -- > 32767 characters
begin
j:= json_object_t;
j.put(v_clob);
end;