Re: ECPG error: break statement not within loop or switch - Mailing list pgsql-interfaces

From Christof Petig
Subject Re: ECPG error: break statement not within loop or switch
Date
Msg-id 3B4571B2.8085019B@petig-baender.de
Whole thread Raw
In response to ECPG error: break statement not within loop or switch  (Hans-Jürgen Schönig <hs@cybertec.at>)
List pgsql-interfaces
Hans-Jürgen Schönig wrote:

> I have written a small application but I can't compile the code because
> of an error I have never seen before:

[...]

> retrieve.pgc: In function `main':
> retrieve.pgc:57: break statement not within loop or switch
> make: *** [x] Fehler 1
>
>         EXEC SQL WHENEVER NOT FOUND DO BREAK;

this statement inserts a 'if (sqlca.sqlcode==100) break;' after each SQL
statement following

>                 EXEC SQL INSERT INTO os (id, name) VALUES (':intext',
> ':inos');         // THE ERROR OCCURS HERE

and here it harms (of course)

you should insert   EXEC SQL WHENEVER NOT FOUND CONTINUE;
after the while loop.

Yours  Christof






pgsql-interfaces by date:

Previous
From: Christof Petig
Date:
Subject: Re: libpq and _pgmodule under WinNT without cygwin
Next
From: "NTB Technical Support"
Date:
Subject: Re: ADO and ODBC: More