From: | Cleber Nardelli <clebernardelli(at)gmail(dot)com> |
---|---|
To: | pgsql-odbc(at)postgresql(dot)org |
Subject: | Transactions and SavePoints |
Date: | 2005-08-30 20:24:00 |
Message-ID: | f90442ed050830132479d634b1@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-odbc |
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
--
Cleber Nardelli
From | Date | Subject | |
---|---|---|---|
Next Message | Robin Weber | 2005-08-30 20:35:33 | PgSQL odbc driver info |
Previous Message | Bruno Wolff III | 2005-08-30 18:57:59 | Re: New PGSQL and Linux Setup on Old Box |