Re: [INTERFACES] Questions about pq library and ecpg - Mailing list pgsql-interfaces

From Michael Meskes
Subject Re: [INTERFACES] Questions about pq library and ecpg
Date
Msg-id 19990410120011.D2048@gmx.net
Whole thread Raw
In response to Questions about pq library and ecpg  (Antonello De Santis <ua01020@flashnet.it>)
List pgsql-interfaces
On Sat, Mar 27, 1999 at 03:43:23PM +0100, Antonello De Santis wrote:
> ...
> Is it possible to accomplish a query on a table whose name is specified in a
> variable? That is, something like the following:
>
> strcpy(str, 'table');
> result=PQexec(conn, "insert into str values('Rome', 10)");
>
> I guess a code like the above one would not give the expected result..... Is
> there a way to work that out?
> I'm trying to use the ecpg preprocessor to pass arguments of a query in
> variables, but I get a few errors.... Here's the piece of code that doesn't
> work:
> ...

Yes, that won't work. But if you commands do not have to transfer data from
the database to C variables you can use "exec sql execute immediate :str"
for whatever command you wrote into the variable string. Or you could use
PREPARE to prepare the statement and then use EXECUTE to execute it as often
as you like.

Check test1.pgc in the source tree for an example.

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.Meskes@gmx.net          | Use PostgreSQL!

pgsql-interfaces by date:

Previous
From: Wybo Dekker
Date:
Subject: Re: [INTERFACES] RE:
Next
From: Michael Meskes
Date:
Subject: Re: [INTERFACES] Questions about pq library and ecpg