Ecpg : caught by global sqlca

Поиск
Список
Период
Сортировка
От Mark Kirkwood
Тема Ecpg : caught by global sqlca
Дата
Msg-id 3E38E962.7060504@paradise.net.nz
обсуждение исходный текст
Ответы Re: Ecpg : caught by global sqlca
Список pgsql-interfaces
Dear list,

I have been porting a few embedded sql programs from DB2 to Postgres.
While overall its a pretty painless exercise, I did get caught by the 
global sqlca thing.

The piece of code went something like :

EXEC SQL INCLUDE sqlca;

main() {
.. struct sqlca sqlca;
..
(more code)
}

Now I found that any tests on sqlca.sqlcode within main() produced 
meaningless results.

Eventually light dawned that sqlca looked like it was uninitialized, and 
that I need to have something like :

EXEC SQL INCLUDE sqlca;
struct sqlca sqlca;

main()
..

This strikes me as something that would be good to mention in the Ecpg 
doco - in bold type for people like me....:-)

regards

Mark



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

Предыдущее
От: ljb
Дата:
Сообщение: Any interest in a Tcl-only libpgtcl project?
Следующее
От: Michael Meskes
Дата:
Сообщение: Re: Ecpg : caught by global sqlca