What PL/SQL Libraries For Auto-Generating JSON Do You Recommend? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T22:39:55Z http://stackoverflow.com/feeds/question/26688 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/26688/what-pl-sql-libraries-for-auto-generating-json-do-you-recommend 2 What PL/SQL Libraries For Auto-Generating JSON Do You Recommend? happyappa 2008-08-25T19:28:54Z 2009-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#26718 1 Answer by Geoff for What PL/SQL Libraries For Auto-Generating JSON Do You Recommend? Geoff 2008-08-25T19:51:12Z 2008-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#26731 0 Answer by happyappa for What PL/SQL Libraries For Auto-Generating JSON Do You Recommend? happyappa 2008-08-25T19:56:32Z 2008-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#26759 0 Answer by Neall for What PL/SQL Libraries For Auto-Generating JSON Do You Recommend? Neall 2008-08-25T20:15:18Z 2008-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#26772 0 Answer by happyappa for What PL/SQL Libraries For Auto-Generating JSON Do You Recommend? happyappa 2008-08-25T20:21:30Z 2008-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#628085 0 Answer by Øyle for What PL/SQL Libraries For Auto-Generating JSON Do You Recommend? Øyle 2009-03-09T21:16:42Z 2009-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#740941 2 Answer by LewisC for What PL/SQL Libraries For Auto-Generating JSON Do You Recommend? LewisC 2009-04-11T22:56:03Z 2009-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>