Re: [SQL] Retrieve the column values of a record without knowing the names

2011-02-18 Thread Pavel Stehule
Hello

you can't simply iterate over record in plpgsql. You can use a some
toolkits like PLToolkit, or different PL language like PLPerl, or some
dirty trick

http://okbob.blogspot.com/2010/12/iteration-over-record-in-plpgsql.html

regards

Pavel Stehule

2011/2/16 arthur_info :
>
> Hello,
>
> I've got the following function and I want to access the fields values of my
> record by index. The problem is that my select is retrieving each record
> line with all values and not each one of each row on my view... How can I
> solve this problem?
>
> Thanks in advance.
>
>
> CREATE FUNCTION fc_teste_tce(aluno integer) RETURNS character varying AS
> $BODY$
> DECLARE
>  reg record;
> BEGIN
>  for reg in execute 'SELECT ARRAY (SELECT vw_teste_tce FROM
> estagio.vw_teste_tce where aluno = ''3043'' LIMIT 20) AS campos' loop
>    for j in 1..array_upper(reg.campos,1) loop
>      raise notice 'Field Value: %',reg.campos[j];
>    end loop;
>  end loop;
>  return 'ok';
> END;
> $BODY$
>
> LANGUAGE plpgsql VOLATILE;
>
>
> --
> View this message in context: 
> http://postgresql.1045698.n5.nabble.com/Retrieve-the-column-values-of-a-record-without-knowing-the-names-tp3387932p3387932.html
> Sent from the PostgreSQL - sql mailing list archive at Nabble.com.
>
> --
> Sent via pgsql-sql mailing list ([email protected])
> To make changes to your subscription:
> http://www.postgresql.org/mailpref/pgsql-sql
>

-- 
Sent via pgsql-sql mailing list ([email protected])
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-sql


Re: [SQL] Retrieve the column values of a record without knowing the names

2011-02-18 Thread Achilleas Mantzios
Στις Wednesday 16 February 2011 18:18:19 ο/η arthur_info έγραψε:
> 
> Hello,
> 
> I've got the following function and I want to access the fields values of my
> record by index. The problem is that my select is retrieving each record
> line with all values and not each one of each row on my view... How can I
> solve this problem? 
> 

Well by your function, it seems that it does not do what you want.
You want to access the values of one row without knowing the names, but what 
you do
is create an array over the values of a *known* column.
Also where aluno = ''3043'' does not make any sense either.

Anyways, you might want to look at database metada as found in the 
information_schema.
For a start you might want to look in information_schema.columns

> Thanks in advance.
> 
> 
> CREATE FUNCTION fc_teste_tce(aluno integer) RETURNS character varying AS
> $BODY$ 
> DECLARE
>   reg record;
> BEGIN
>   for reg in execute 'SELECT ARRAY (SELECT vw_teste_tce FROM
> estagio.vw_teste_tce where aluno = ''3043'' LIMIT 20) AS campos' loop
> for j in 1..array_upper(reg.campos,1) loop
>   raise notice 'Field Value: %',reg.campos[j];
> end loop;
>   end loop;
>   return 'ok';
> END;  
> $BODY$
> 
> LANGUAGE plpgsql VOLATILE;
> 
> 
> -- 
> View this message in context: 
> http://postgresql.1045698.n5.nabble.com/Retrieve-the-column-values-of-a-record-without-knowing-the-names-tp3387935p3387935.html
> Sent from the PostgreSQL - sql mailing list archive at Nabble.com.
> 



-- 
Achilleas Mantzios

-- 
Sent via pgsql-sql mailing list ([email protected])
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-sql


[SQL] Re: Retrieve the column values of a record without knowing the names

2011-02-18 Thread arthur_info

Very interesting... But with information_schema.columns is easier... Thanks
anyway... 
-- 
View this message in context: 
http://postgresql.1045698.n5.nabble.com/Retrieve-the-column-values-of-a-record-without-knowing-the-names-tp3387932p3390948.html
Sent from the PostgreSQL - sql mailing list archive at Nabble.com.

-- 
Sent via pgsql-sql mailing list ([email protected])
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-sql


[SQL] Re: Retrieve the column values of a record without knowing the names

2011-02-18 Thread arthur_info

Wow, how I didn't think about this solution? Thanks a lot! So easy...
-- 
View this message in context: 
http://postgresql.1045698.n5.nabble.com/Retrieve-the-column-values-of-a-record-without-knowing-the-names-tp3387932p3390950.html
Sent from the PostgreSQL - sql mailing list archive at Nabble.com.

-- 
Sent via pgsql-sql mailing list ([email protected])
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-sql


[SQL] Re: Retrieve the column values of a record without knowing the names

2011-02-18 Thread arthur_info

Wow, I don't know if I exposed the problem in the right way, but I'm not
achieving the solution with information_schema... Let me show the function:

CREATE OR REPLACE FUNCTION fc_teste_tce2(codigo_aluno integer)
  RETURNS character varying AS
$BODY$ 
DECLARE
  reg record;
  reg2 record;
  msg character varying;
  i integer;
BEGIN
  msg := '';
  i := 0;
  for reg in SELECT * FROM estagio.vw_aluno_tce where aluno::integer =
codigo_aluno loop
for reg2 in select column_name
from information_schema.columns 
where table_catalog = 'seduc' and 
  table_schema = 'estagio' and 
  table_name = 'vw_aluno_tce' loop
  if reg.reg2.column_name = '' then --> how can I do this to check
if there's no value for the field?
i := 1;
  end if; 
end loop; 
  end loop;
  if (i = 1) then
return 'Problems...';
  else
return 'ok';
  end if;
END;  
$BODY$
  LANGUAGE plpgsql VOLATILE
  COST 100;


Thanks a lot!
-- 
View this message in context: 
http://postgresql.1045698.n5.nabble.com/Retrieve-the-column-values-of-a-record-without-knowing-the-names-tp3387932p3390966.html
Sent from the PostgreSQL - sql mailing list archive at Nabble.com.

-- 
Sent via pgsql-sql mailing list ([email protected])
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-sql