How I can return a set of recordset from PL/Python

Поиск
Список
Период
Сортировка
От anoopmadavoor@gmail.com
Тема How I can return a set of recordset from PL/Python
Дата
Msg-id 1182929061.446086.305950@w5g2000hsg.googlegroups.com
обсуждение исходный текст
Список pgsql-interfaces
Hi,
     Anyone who have a knowledge about PL/Python pls help me. I want
to return a set of values from a database table.

I want to write PL/Python function like this


create or replace function cust_name(OUT temp) RETURNS SETOF
<something>  as '
rv = plpy.execute("SELECT * FROM customer )

return <the result obtained in rv>
' LANGUAGE plpythonu;

Sample data and table structure.

create table customer(id int,name text);
insert into customer values(1,'David John');
insert into customer values(2,'Richard Giri');

Thanks:

Anoop G



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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: libpq: PQexecParams, binaryFormat and float
Следующее
От: Richard Frankland
Дата:
Сообщение: Re: libpq: PQexecParams, binaryFormat and float