Re: Is there a simple function for copiing cursor data into array?

From: "Pavel Stehule" <pavel(dot)stehule(at)gmail(dot)com>
To: alebu <aleboo(at)gmail(dot)com>
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: Is there a simple function for copiing cursor data into array?
Date: 2008-11-03 09:43:25
Message-ID: 162867790811030143i58308659o9e686b61c5a767d2@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Hello

2008/11/3 alebu <aleboo(at)gmail(dot)com>:
> Hi list,
> I am searching for function which creates or appends to array content of cursor.
> I found that it is possible to get select result as array so it is
> probably logical to have something similar for cursors.
> I mean, there is copy-paste from documentation for 8.3 version:
> -----
> SELECT ARRAY(SELECT oid FROM pg_proc WHERE proname LIKE 'bytea%');
> ?column?
> -------------------------------------------------------------
> {2011,1954,1948,1952,1951,1244,1950,2005,1949,1953,2006,31}
> (1 row)
> ------
> What i want is to have some cursor, open it (with parameters optionally)
> and just call some function which will fill my array with data from cursor.
> I can do some iteration but it is really can be done in some universal
> way I think.
> Any suggestion?
>

I am afraid there isn't any simply way

Pavel

> --
> Sent via pgsql-general mailing list (pgsql-general(at)postgresql(dot)org)
> To make changes to your subscription:
> http://www.postgresql.org/mailpref/pgsql-general
>

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Peter Eisentraut 2008-11-03 09:50:12 Re: Are there plans to add data compression feature to postgresql?
Previous Message alebu 2008-11-03 09:12:18 Is there a simple function for copiing cursor data into array?