up vote 4 down vote favorite
2
share [g+] share [fb]

Are there any good PL/SQL libraries for JSON that you've worked with and found useful?

In PL/SQL, I'm having to tediously hand code the return of JSON values to JavaScript functions. I found one PL/SQL library 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.

Note:
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.

link|improve this question

feedback

4 Answers

up vote 3 down vote accepted

Check out PL/JSON. You can see it at http://oracleoss.com/

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.

LewisC http://database-geek.com

link|improve this answer
feedback

@Geoff-

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.

So, there isn't application code like you'd see in more modern, better architected systems. I do want to do things the right way, I just don't have that luxury given organizational constraints.

link|improve this answer
feedback

I wonder why you don't want to bring the data from Oracle into some application code and make JSON there?

link|improve this answer
feedback

Ouch - generating your interface in PL/SQL. You have my sympathy.

I've never done anything like this, but Googling found this page (which is also referenced from the json.org page).

link|improve this answer
1  
"generating your interface in PL/SQL. You have my sympathy."... obviously you have never heard about Oracle Application Express (apex.oracle.com)... ? – ObiWanKenobi Aug 4 '09 at 18:20
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.