Re: [INTERFACES] my problems with ecpg and arrays

From: Michael Meskes <meskes(at)postgresql(dot)org>
To: PostgreSQL Interfaces <pgsql-interfaces(at)postgresql(dot)org>
Subject: Re: [INTERFACES] my problems with ecpg and arrays
Date: 1999-11-12 16:10:44
Message-ID: 19991112171044.A623@fam-meskes.de
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-interfaces

On Mon, Nov 08, 1999 at 10:39:12AM -0600, Coleman, Andrew wrote:
> I'm having problems loading (insert into ..) a c array into a postgres
> table.
> I have tried all the variations on syntax I can think of, and searched for
> the
> answer... and either didn't find it or didn't recognize it..

I'm afraid you find a real problem here. I just didn't think about inserting
arrays. If you give ecpg an array of int it inserts every single value as
one int. That means:

insert into foo(bar) values(:intarray)

is equal to:

for (i=0;i<maxarray;i++)
insert into foo(bar) values(:intarray[i])

How shall ecpg see that this time it is meant to insert the whole array?

Anyone with an idea?

Michael
--
Michael Meskes | Go SF 49ers!
Th.-Heuss-Str. 61, D-41812 Erkelenz | Go Rhein Fire!
Tel.: (+49) 2431/72651 | Use Debian GNU/Linux!
Email: Michael(at)Fam-Meskes(dot)De | Use PostgreSQL!

Browse pgsql-interfaces by date

  From Date Subject
Next Message Ross J. Reedstrom 1999-11-12 16:11:03 Re: [INTERFACES] RE: THE Postgres WEB SITE
Previous Message Lamar Owen 1999-11-12 15:43:39 Re: [INTERFACES] RE: THE Postgres WEB SITE