Re: Returning data from function

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Returning data from function
Дата
Msg-id 17250.1004588380@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: Returning data from function  ("Josh Berkus" <josh@agliodbs.com>)
Список pgsql-novice
"Josh Berkus" <josh@agliodbs.com> writes:
>> I need to recieve parameters and return a resultset.

> This functionality does not currently work in PostgreSQL.

It's not so much that "it doesn't work" as that "plpgsql doesn't support
it".  Returning rowsets does work for SQL-language functions; not that
that's much help if you need a procedural language to do the
computations.  It's also possible to do it in C-coded functions
(a fortiori, since after all the whole system is in C).  But again that
might not be your preferred development medium.

FWIW, I've recently updated the description of SQL functions to clarify
(I hope) what works and does not work in this area.  See the devel docs
at http://candle.pha.pa.us/main/writings/pgsql/sgml/xfunc-sql.html.
The docs are devel, but the features described have all been there since
Berkeley days...

            regards, tom lane

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

Предыдущее
От: "Sharon Cowling"
Дата:
Сообщение: Update function
Следующее
От: Tom Lane
Дата:
Сообщение: Re: Update function