Re: [INTERFACES] ecpg cursors and scope

From: "Pavel PaJaSoft Janousek" <janousek(at)fonet(dot)cz>
To: "Dave Broudy" <shaggy(at)broudy(dot)net>
Cc: "PgSQL Interfaces" <pgsql-interfaces(at)postgresql(dot)org>
Subject: Re: [INTERFACES] ecpg cursors and scope
Date: 1999-04-21 10:36:59
Message-ID: 00ab01be8be2$e4581480$0200a8c0@server.fonet2.cz
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-interfaces

>A) In seperate functions:
>
>func1() {
> exec sql declare test_cur for ...
>}
>func2() {
> exec sql declare test_cur for ... /* same or different sql */
>}
>
>B) In an if:
>
>if(...) {
> exec sql declare test_cur for ...
>} else {
> exec sql declare test_cur for ... /* same or different sql */
>}
>
>These both yield "cursor test_cur already defined"

I try this too, but I got the same error... )ECPG distributed with
PostgreSQL 6.4.2)

I think, that principly is correct contructions like this:

if (condition)
{
exec sql declare cur cursor for select count (*) from tmp where
col1 - :num;
}
else
{
exec sql declare cur cursor for select count (*) from tmp;
}
exec sql whenever not found continue;
exec sql open cur;
exec sql whenever not found do break;
while (1)
{
exec sql fetch in cur into :num1;
}

But this isn't allow too, because second exec sql declare.... - in this
line I got the same message...:-(

One time I wrote this exec<space><space>sql - and ECPG say parse error
too, but I forgot, that bad was only this two spaces between 'exec' and
'sql'....

Next, some 'interesting' situations I got when I use exec sql
whenever... - scope for this is not as the program running, but as the
source is parsing... - this is ...'-)

----------------------------------------------------------------------------
--
Pavel Janousek (PaJaSoft) FoNet, spol. s r. o.
Vyvoj software, sprava siti, Unix, Web, Y2K Anenska 11, 602 00
Brno
E-mail: mailto:Janousek(at)FoNet(dot)Cz Tel.: +420 5 4324
4749
SMS: mailto:P(dot)Janousek(at)SMS(dot)Paegas(dot)Cz Fax.: +420 5 4324
4751
WWW: http://WWW.FoNet.Cz/ E-mail:
mailto:Info(at)FoNet(dot)Cz
----------------------------------------------------------------------------
---

Responses

Browse pgsql-interfaces by date

  From Date Subject
Next Message Michael Meskes 1999-04-21 11:49:24 Re: [INTERFACES] ecpg cursors and scope
Previous Message Thomas Lockhart 1999-04-21 03:36:49 Re: [INTERFACES] Error in ECPG and #if...