Function Doubt - Mailing list pgsql-sql

From Wilton
Subject Function Doubt
Date
Msg-id 41F9259A.2080402@microwork.inf.br
Whole thread Raw
Responses Re: Function Doubt  (Richard Huxton <dev@archonet.com>)
List pgsql-sql
Inside a function of trigger type, i have:

Declare   qCampos record;   StrCampo string;   StrInsert string;
Begin
   StrCampo = '''';   StrInsert = '''';
   For qCampos in select pga.attname from pg_class pgc, pg_attribute pga                  where pgc.relname = '''' ||
tg_relname|| '''' and                  pgc.oid = pga.attrelid and pga.attnum > 0 and                  attisdropped <>
''t''Loop
 
      StrCampo = ''new.'' || qCampos.attname;      StrInsert = StrInsert || virgula || StrCampo || '' - '';   End
Loop;
   Return new;
End;

What i need to do for the variable StrCampo returns to me "SP", "RJ", i 
mean, return a value inserted into the field.
I do not want to use static command new.campo1, new.campo2....

Thanks,

Wilton Ruffato Wonrath



-- 
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.300 / Virus Database: 265.7.6 - Release Date: 27/1/2005



pgsql-sql by date:

Previous
From: KÖPFERL Robert
Date:
Subject: Re: What's the equivalent in PL/pgSQL
Next
From: "Joel Fradkin"
Date:
Subject: hardware mod based on feedback from the list