Re: plpgsql arrays

Поиск
Список
Период
Сортировка
От Matthew Wakeling
Тема Re: plpgsql arrays
Дата
Msg-id alpine.DEB.2.00.0904071630420.791@aragorn.flymine.org
обсуждение исходный текст
Ответ на Re: plpgsql arrays  (justin <justin@emproshunts.com>)
Ответы Re: plpgsql arrays  (justin <justin@emproshunts.com>)
Re: plpgsql arrays  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-performance
On Tue, 7 Apr 2009, justin wrote:
>> What would be the syntax for putting a single row from a cursor into a
>> variable? I have tried:
>>
>> FETCH INTO left left_cursor;
>>
>> which says syntax error, and
>>
>> left = FETCH left_cursor;
>>
>> which gives the error 'ERROR:  missing datatype declaration at or near "="'
>
> Have to declare Left variable  as record data type declaration part of the
> function

It is.

CREATE OR REPLACE FUNCTION overlap_gene_primer() RETURNS SETOF RECORD AS $$
DECLARE
     left location;
     retval RECORD;
BEGIN
     DECLARE left_cursor NO SCROLL CURSOR FOR SELECT location FROM location, gene WHERE location.id = gene.id ORDER BY
objectid,start, end; 
     left = FETCH left_cursor;
END;
$$ LANGUAGE plpgsql;

Matthew

--
"Prove to thyself that all circuits that radiateth and upon which thou worketh
 are grounded, lest they lift thee to high-frequency potential and cause thee
 to radiate also. "             -- The Ten Commandments of Electronics

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

Предыдущее
От: justin
Дата:
Сообщение: Re: plpgsql arrays
Следующее
От: justin
Дата:
Сообщение: Re: plpgsql arrays