Re: [INTERFACES] Questions about pq library and ecpg

Поиск
Список
Период
Сортировка
От Michael Meskes
Тема Re: [INTERFACES] Questions about pq library and ecpg
Дата
Msg-id 19990410120011.D2048@gmx.net
обсуждение исходный текст
Ответ на Questions about pq library and ecpg  (Antonello De Santis <ua01020@flashnet.it>)
Список 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 по дате отправления:

Предыдущее
От: Wybo Dekker
Дата:
Сообщение: Re: [INTERFACES] RE:
Следующее
От: Michael Meskes
Дата:
Сообщение: Re: [INTERFACES] Questions about pq library and ecpg