How can I pass an array from PostgreSQL to C (libpq)?

From: gar8(at)pitt(dot)edu (Tony Reina)
To: pgsql-sql(at)postgresql(dot)org
Subject: How can I pass an array from PostgreSQL to C (libpq)?
Date: 2003-03-26 18:24:46
Message-ID: a1688e61.0303261024.38b1b31e@posting.google.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

I'm using the C library (lipq) to grab data from a field that contains
a float array (float4[]). I'd like to fill an array in my C program
with these values. Unfortunately, Postgres returns the array as a
large string instead of individual values.

Now I could perform "select array_var[1], array_var[2], array_var[3],
..., array_var[4]" and have each array value come back as a different
field, but this seems fairly messy. I suppose I could also go through
and parse the characters in the string returned.

Has anyone else used any other strategies to fill their C array with
an array returned from the libpq? Perhaps there are some SQL functions
for arrays that might exist?

Thanks.
-Tony

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message Stephan Szabo 2003-03-26 18:44:33 Re: order by
Previous Message Manfred Koizar 2003-03-26 18:16:49 Re: UPDATE FROM portability