Re: Interesting ECPG error

Поиск
Список
Период
Сортировка
От Michael Meskes
Тема Re: Interesting ECPG error
Дата
Msg-id 20040621063855.GA4610@1
обсуждение исходный текст
Ответ на Interesting ECPG error  ("Owens, Steve" <Steve.Owens@xerox.com>)
Список pgsql-interfaces
On Fri, Jun 18, 2004 at 05:11:01PM -0400, Owens, Steve wrote:
> 
> I'm running 7.4.2 and using ECPG's dynamic SQL capabilities to run some pgplsql functions in a database, some of
whichjust insert records into a table. The dynamic SQL statement looks something like this:
 
> ...

Could you please run your program with logging enabled? Therefore you
just have to add this at the beginning of your program:

FILE *dbgs;
if ((dbgs = fopen("log", "w")) != NULL) ECPGdebug(1, dbgs);

and an fclose(dbgs) at the end of course. This creates a file named
"log". Then please send me that file. I'd like to see what's going on. 

-220 btw is "No Connection" so I assume you mean -202 which is given if
a "?" is left after processing of all variables. 

Also could you please send me the .pgc file and your .c file, i.e.
ecpg's output? Preferably in a small test case.

Thanks.

Michael
-- 
Michael Meskes
Email: Michael at Fam-Meskes dot De
ICQ: 179140304, AIM/Yahoo: michaelmeskes, Jabber: meskes@jabber.org
Go SF 49ers! Go Rhein Fire! Use Debian GNU/Linux! Use PostgreSQL!


В списке pgsql-interfaces по дате отправления:

Предыдущее
От: "Owens, Steve"
Дата:
Сообщение: Interesting ECPG error
Следующее
От: Michael Meskes
Дата:
Сообщение: Re: 'execute immediate' problem