Re: Array of C integers to temporary table? - Mailing list pgsql-novice

From postgres-novice@coreland.ath.cx
Subject Re: Array of C integers to temporary table?
Date
Msg-id 20090127204755.GB89472@logik.internal.network
Whole thread Raw
In response to Re: Array of C integers to temporary table?  ("Obe, Regina" <robe.dnd@cityofboston.gov>)
List pgsql-novice
On 2009-01-27 14:47:22, Obe, Regina wrote:
>
> I'm not quite sure what you mean by an array of C integers.  You mean
> you have an array in C
> that you are trying to bring into PostgreSQL, or a random assortment of
> integers in C you would like to bring in,
> or you have a PostgreSQL array.

Hi.

Yes, should've been clearer about that really. What I meant was an array
of integers in C that I want to get into PostgreSQL somehow:

void
select_all_matching (int *ids)
{
  /* SELECT * FROM some_table WHERE id IN (SELECT * FROM ids); */
}

Given the ancient version of Postgres I'm being asked to use, it looks
like I'll have to use the COPY functions in libpq or just do things the
long way...

thanks for your time!

pgsql-novice by date:

Previous
From: postgres-novice@coreland.ath.cx
Date:
Subject: Re: Array of C integers to temporary table?
Next
From: richard terry
Date:
Subject: using to_number() in a select query with ranges