Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I hope I am not missing something very obvious here,
I want to get JSON output from a postgres function (I imagine many other had already needed this) and I'd be happy to install an extension of contrib functions on my server,

Is there any way to get JSON output from sql or plpgsql functions (or with help of db-server-side python)? Specifically I want to get my record[] results as JSON.

share|improve this question

3 Answers

up vote 2 down vote accepted

There will be some support for this in the coming 9.2.

In the meantime, there is backport referenced in the same blog.

EDIT: Specially have a look at row_to_json function.

share|improve this answer
As I understand it, this is support for a JSON type, which holds json formated text and validates it, it does not produce JSON output. – Ali Jun 26 '12 at 1:18
Did you check the examples in the first link? There are functions query_to_json(), array_to_json() and record_to_json() which take input according to their names and turn it into JSON. – madth3 Jun 26 '12 at 4:51
You are right, I missed the row_to_json function, this may solve my problem, thanks. – Ali Jun 26 '12 at 12:17

The plpython plugin certainly lets you do this using the python json library.

You can do something like this:

CREATE OR REPLACE FUNCTION myschema.tojsonfunc()
AS $$    

   import json;
   jsonStr = json.dumps(myrecord)

$$ LANGUAGE plpythonu;
share|improve this answer
1  
Thanks, the problem is SQL query results (AKA records) are not sql serializable as they are, someone needs to take the time to "clean" them to conform, and if I wanted to do that, I'd better do it in my actual python code, and not bother loading the poor db server with this. – Ali Jun 26 '12 at 1:17

Use record_to_json(...) from 9.2, now available backported to 9.1.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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