Обсуждение: How I can return a set of recordset from PL/Python

Поиск
Список
Период
Сортировка

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

От
"anoopmadavoor@gmail.com"
Дата:
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