What PL/SQL Libraries For Auto-Generating JSON Do You Recommend? - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T22:39:55Zhttp://stackoverflow.com/feeds/question/26688http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/26688/what-pl-sql-libraries-for-auto-generating-json-do-you-recommend2What PL/SQL Libraries For Auto-Generating JSON Do You Recommend?happyappa2008-08-25T19:28:54Z2009-04-11T22:56:03Z
<p>Are there any good PL/SQL libraries for JSON that you've worked with and found useful?</p>
<p>In <a href="http://www.oracle.com/technology/tech/pl_sql/index.html" rel="nofollow">PL/SQL</a>, I'm having to tediously hand code the return of <a href="http://www.json.org/" rel="nofollow">JSON</a> values to JavaScript functions. I found <a href="http://www.erasme.org/pl-sql-library-for-JSON" rel="nofollow">one PL/SQL library</a> for auto-generating JSON, but it doesn't do exactly everything I need it too. For example, I couldn't extend the base functions in the library to return a complex tree-like JSON data structure required by a JavaScript tree component I was using.</p>
<p><em>Note:</em><br />
The system, which has been in production for 8+ years, was architected to use PL/SQL for the CRUDs and most of the business logic. The PL/SQL also generates 90% of the presentation layer (HTML/JavaScript), using mod PL/SQL. The other 10% is report data done via Oracle Reports Builder.</p>
http://stackoverflow.com/questions/26688/what-pl-sql-libraries-for-auto-generating-json-do-you-recommend/26718#267181Answer by Geoff for What PL/SQL Libraries For Auto-Generating JSON Do You Recommend?Geoff2008-08-25T19:51:12Z2008-08-25T19:51:12Z<p>I wonder why you don't want to bring the data from Oracle into some application code and make JSON there?</p>
http://stackoverflow.com/questions/26688/what-pl-sql-libraries-for-auto-generating-json-do-you-recommend/26731#267310Answer by happyappa for What PL/SQL Libraries For Auto-Generating JSON Do You Recommend?happyappa2008-08-25T19:56:32Z2008-08-25T19:56:32Z<p>@Geoff- </p>
<p>The system, which has been in production for 8+ years, was architected to use PL/SQL for the CRUDs and <em>most</em> of the business logic. The PL/SQL also generates 90% of the presentation layer (HTML/JavaScript), using <a href="http://www.orafaq.com/wiki/Mod_plsql_FAQ" rel="nofollow">mod PL/SQL</a>. The other 10% is report data done via Oracle Reports Builder.</p>
<p>So, there isn't application code like you'd see in more modern, better architected systems. I do <strong>want</strong> to do things the <em>right</em> way, I just don't have that luxury given organizational constraints.</p>
http://stackoverflow.com/questions/26688/what-pl-sql-libraries-for-auto-generating-json-do-you-recommend/26759#267590Answer by Neall for What PL/SQL Libraries For Auto-Generating JSON Do You Recommend?Neall2008-08-25T20:15:18Z2008-08-25T20:15:18Z<p>Ouch - generating your interface in PL/SQL. You have my sympathy.</p>
<p>I've never done anything like this, but Googling found <a href="http://www.erasme.org/pl-sql-library-for-JSON" rel="nofollow">this page</a> (which is also referenced from the json.org page).</p>
http://stackoverflow.com/questions/26688/what-pl-sql-libraries-for-auto-generating-json-do-you-recommend/26772#267720Answer by happyappa for What PL/SQL Libraries For Auto-Generating JSON Do You Recommend?happyappa2008-08-25T20:21:30Z2008-08-25T20:21:30Z<p>@Neall- </p>
<p>Appreciate you searching, thanks. I had that erasme link included in my question, but it's hidden as a link. I actually thought it might do the trick at first, but I couldn't get it to do that tree that I needed...so I ended up putting that library to the side.</p>
<p>Yeah, about the interface, when I first started this job, my eyes barfed. </p>
http://stackoverflow.com/questions/26688/what-pl-sql-libraries-for-auto-generating-json-do-you-recommend/628085#6280850Answer by Øyle for What PL/SQL Libraries For Auto-Generating JSON Do You Recommend?Øyle2009-03-09T21:16:42Z2009-03-09T21:16:42Z<p>How did you solve this?</p>
<p>I'm looking for the same thing I believe.</p>
http://stackoverflow.com/questions/26688/what-pl-sql-libraries-for-auto-generating-json-do-you-recommend/740941#7409412Answer by LewisC for What PL/SQL Libraries For Auto-Generating JSON Do You Recommend?LewisC2009-04-11T22:56:03Z2009-04-11T22:56:03Z<p>Check out PL/JSON. You can see it at <a href="http://oracleoss.com/" rel="nofollow">http://oracleoss.com/</a></p>
<p>It's at version 0.5 right now. It can generate JSON but not read it. I'm writing the parser and it will be added before v1.0.</p>
<p>LewisC
<a href="http://database-geek.com" rel="nofollow">http://database-geek.com</a></p>