Re: array of composite types to refcusor - Mailing list pgsql-general

From Merlin Moncure
Subject Re: array of composite types to refcusor
Date
Msg-id b42b73150805271038i56252b9by9b1bedf0fa9b7f5c@mail.gmail.com
Whole thread Raw
In response to array of composite types to refcusor  (aasat <aasat@o2.pl>)
List pgsql-general
On Tue, May 27, 2008 at 4:48 AM, aasat <aasat@o2.pl> wrote:
> hello
>
> It is posibile to get data from array of composite types to refcursor?
>
> In oracle like this
>
> open c_refcur for
>   select * from TABLE(array_of_composite_types);

sure. AIUI, there is nothing that arrays of composites does any
differently from any other query in terms of how things work with
refcursors.  You pull data out with 'fetch', etc.  Since fetch is a
one-way ticket to the client, you will be limited to what the client
side interface library supports in terms of pulling data out of
composite arrays (worst case scenario you basically parse it out as
text).

I will humbly submit that our project, libpqtypes, is an attempt to
provide richer support for arrays and composites in the client side:
http://libpqtypes.esilo.com/

merlin

pgsql-general by date:

Previous
From: yazicivo@ttmail.com (Volkan Yazıcı)
Date:
Subject: Re: Permission Problem for DELETE
Next
From: Tom Lane
Date:
Subject: Re: Permission Problem for DELETE