I have a procedure like the following:
procedure receive_json(in_json in json) is
my_clob clob;
begin
-- This line keeps returning "wong number or types: to_clob"
in_json.to_clob(in_json, my_clob);
-- rest of my procedure
end receive_json;
How do I get the to_clob
method to actually put the JSON in my CLOB?