Re: Referencing Cursor/Row/Record Fields in PL/PgSQL

Поиск
Список
Период
Сортировка
От Pavel Stehule
Тема Re: Referencing Cursor/Row/Record Fields in PL/PgSQL
Дата
Msg-id 162867790902102021r3df72751i6531fa69d9f462fd@mail.gmail.com
обсуждение исходный текст
Ответ на Re: Referencing Cursor/Row/Record Fields in PL/PgSQL  (Lee Hughes <lee@hughesys.com>)
Ответы Re: Referencing Cursor/Row/Record Fields in PL/PgSQL  (Lee Hughes <lee@hughesys.com>)
Список pgsql-general
Hello

2009/2/11 Lee Hughes <lee@hughesys.com>:
> I thought that's what EXECUTE was for in plpgsql -- isn't there a way to
> extract the value of a field in a row/record variable by building a SELECT
> string and passing it to EXECUTE?
>

not in plpgsql. Try, plperl or some synamic PL language, please

regards
Pavel Stehule

> On Tue, Feb 10, 2009 at 1:22 PM, Tom Lane <tgl@sss.pgh.pa.us> wrote:
>>
>> Lee Hughes <lee@hughesys.com> writes:
>> > Trying to figure out how to reference a field in a cursor result, or in
>> > a
>> > row/record variable that I've FETCHed the cursor into, where the target
>> > field name is in a variable or parameter. I think I'm just missing the
>> > dereferencing syntax.
>>
>> There isn't any --- plpgsql doesn't deal in accesses to unknown fields
>> (mainly because it can't know their type, and it's a strongly typed
>> language).  Consider plperl or plpython or pl-anything-but-pgsql.
>>
>>                        regards, tom lane
>
>
>

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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: Case-sensitive connect in psql is perplexing
Следующее
От: Craig Ringer
Дата:
Сообщение: Re: Deleting conflicting rows when creating a foreign key