pljson
pljson copied to clipboard
PL/JSON is a generic JSON object written in PL/SQL. Using PL/SQL object syntax, users instantiate a JSON object and then add members, arrays and additional JSON objects. This object type can store JSO...
Hello first of all thank you for your great work in this project we have have used this project years ago at version 1.0.5 in oracle 10g now we want...
Hi, I am getting an error on the following line of code when the JSON is very large. `V_RESULT_JSON := JSON(V_JSON_CLOB);` Can you suggest any solution or workaround available? It's...
Procedures pljson_printer.add_to_clob and flush_clob must use Length2 function like in pljson_parser.updateClob
Hi, After upgrade from version 1.0.4 to 2.4.0 the same code results in a ORA-04030: out of process memory (4 GB) Full error description: ORA-04030: out of process memory when...
Hi team! Congratulations with the version 2 released! Great job. Looking forward to upgrade to it shortly. The new versions starts the new era for the tool, doesn’t it? So...
Suggestion
I have suggestion add in `pljson` type function `put` who return `self` as `pljson` Then we can write code as: ``` declare j pljson; begin j:=pljson() .put('a','a') .put('b',pljson() .put('c','c') .put('d','d')...
version 3.0 RC has been introduced thanks to @boriborm for reminding that it should not be forgotten this version as the README says works fine (except the pljson_helper functions) however...
This issue is to be addressed when we are ready to create a 3.0.0 release. Such a release should not happen prior to 2016-10-01 in order to give people time...
I added an `include_nulls` parameter to `JSON_DYN` to filter out nulls in the resultant JSON.
including my pulled json_printer.empty_string_as_null #49