plpgsql returning array

Поиск
Список
Период
Сортировка
От Jean-Christophe Roux
Тема plpgsql returning array
Дата
Msg-id 20061014202841.17630.qmail@web35304.mail.mud.yahoo.com
обсуждение исходный текст
Ответы Re: plpgsql returning array
Список pgsql-php
Hello,
in Postgresql, I have a function like this

CREATE OR REPLACE FUNCTION foo()
  RETURNS text[] AS
$BODY$
declare
    a text;
    b text;
    arr text[];
begin
    a = 'a';
    b = 'b';
    arr[0] = a;
    arr[1] = b;
    return arr;
end;
$BODY$
  LANGUAGE 'plpgsql' VOLATILE;

In PHP I would like to read my returned arr.
<?php
            $message = pg_fetch_result(pg_query("select foo()"),0,0);
            print_r($message);
?>
prints something like:
[0:1]={a,b}


I could parse that results, as a string but I'd rather have a nice array. Any idea how I should change the function and/or the php codes?
Thanks in advance
Jean

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

Предыдущее
От: "ben wilko"
Дата:
Сообщение: Re: Tutorial/Example of Insert/Select PDF Postgres DB ?
Следующее
От: Marc McIntyre
Дата:
Сообщение: Re: plpgsql returning array