Re: [ADMIN] returning results from plsql function to plpythonu function

Поиск
Список
Период
Сортировка
От Lou Picciano
Тема Re: [ADMIN] returning results from plsql function to plpythonu function
Дата
Msg-id 94892798.641712.1322934925178.JavaMail.root@sz0093a.westchester.pa.mail.comcast.net
обсуждение исходный текст
Ответ на returning results from plsql function to plpythonu function  (c k <shreeseva.learning@gmail.com>)
Ответы Re: [ADMIN] returning results from plsql function to plpythonu function
Список pgsql-general
CP - You're missing a line in the middle; one which will extract specific content(s) from $results.

Because, yes, without such a line, python will only return the object reference.

Lou Picciano


From: "c k" <shreeseva.learning@gmail.com>
To: "pgsql-admin" <pgsql-admin@postgresql.org>, pgsql-general@postgresql.org
Sent: Saturday, December 3, 2011 12:50:16 PM
Subject: [ADMIN] returning results from plsql function to plpythonu function

Hello friends,
I am checking some logic which includes two functions. One is plsql function which returns text. Second function is plpythonu and contains one statement which outputs notice

e.g.
results = plpy.execute("select * from software.func1();")
plpy.notice("%s" % col for col in results[0])

The same result is returned as a final return as notice. But it does not outputs the correct result which is returned from func1 (text in this case). Rather it outputs notice as
NOTICE:  <generator object <genexpr> at 0xb578cb6c>
It doesn't prints the correct notice even by using
plpy.notice("%s" %results)

What can be the problem here?
Thanks for help.


C P Kulkarni

В списке pgsql-general по дате отправления:

Предыдущее
От: c k
Дата:
Сообщение: returning results from plsql function to plpythonu function
Следующее
От: c k
Дата:
Сообщение: Re: [ADMIN] returning results from plsql function to plpythonu function