Re: Transactions and SavePoints

From: Carlos Henrique Reimer <carlosreimer(at)yahoo(dot)com(dot)br>
To: pgsql-odbc(at)postgresql(dot)org
Subject: Re: Transactions and SavePoints
Date: 2005-08-31 11:57:35
Message-ID: 20050831115735.91661.qmail@web53206.mail.yahoo.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-odbc

Is there a ODBC flavor than can implement ROLLBACK TO SAVEPOINT?

Marko Ristola wrote:
> Unfortunately SAVEPOINTs are not implemented in PsqlODBC yet.
>
>
>ROLLBACK TO SAVEPOINT -case is easy to fix, but the full
>implementation is hard to make correctly for psqlodbc, at least for me.
>
>Marko Ristola
>
>>Cleber Nardelli wrote:
>>
>>
>>Hello.
>>I am using the Driver odbc for access to postgresql. I have a referring problem to the cancellation of the transaction when
>>some error
>>is found at the moment of the execution of the same one. I try to execute this sql command:
>>
>>
>>BEGIN TRANSACTION;
>> DELETE FROM TABL1 WHERE ID = 1;
>> INSERT INTO TABL1 VALUES (1,1);
>> SAVEPOINT SVPT;
>> INSERT INTO TABL1 VALUES (1,1);
>> ROLLBACK TO SAVEPOINT SPVT;
>>COMMIT;
>>
>>When I try to insert as register it accuses to error with key duplicate. Ok. But I do not want to cancel the transaction I I need to only continue
>>with the same one skirting this error. For this reason I am using
>>SavePoints but it generates the error:
>>"ERROR: ROLLBACK TO SAVEPOINT may only be used in transaction blocks"
>>
>>Necessary of the your help. I thank
>>
>>Yours truly
>>


---------------------------------
Yahoo! Acesso Grátis: Internet rápida e grátis. Instale o discador agora!

Responses

Browse pgsql-odbc by date

  From Date Subject
Next Message Scot Loach 2005-08-31 12:52:00 Re: changed behavior in libpq odbc driver
Previous Message Cleber Nardelli 2005-08-31 11:35:03 Re: [Fwd: Re: Transactions and SavePoints]