Jump to content

Transações, Rollback


Helio13

Recommended Posts

Boa tarde!

Estou com uma duvida, e queria ver se alguém me podia ajudar...!

Eu estou a fazer um procedimento com transações e gostaria que só acontecesse o COMMIT senão ocorre-se nenhum erro, caso ocorre-se ele fazia o ROLLBACK

O que tenho é isto, mas não sei se posso fazer isto...!?

BEGIN

SAVEPOINT ponto_de_salvamento;

DECLARE HANDLER;

START TRANSACTION;

Call descritores_copy;
Call achados_copy;
Call adornos_copy;
Call ceramicas_copy;
Call fauna_copy;
Call industrialiticapolida_copy;
Call industrialitica_copy;
Call industriaossea_copy;
Call metais_copy;
Call ossoshumanos_copy;

IF HANDLER <> O THEN
ROLLBACK TO ponto_de_salvamento;
ELSE
COMMIT;
end if;

END

Alguém me pode ajudar?

Cumprimentos

Link to comment
Share on other sites

Quando fazes um commit deixas de poder fazer rollback.

Só podes fazer commit no fim, de forma a que a transação seja atómica, ou seja, no final, ou fazes commit ou fazes rollback.

Podes fazer isso por save points, mas tens fazer um ciclo em que por cada iteração os dados que são commit ou rollback são todos relacionados.

10 REM Generation 48K!
20 INPUT "URL:", A$
30 IF A$(1 TO 4) = "HTTP" THEN PRINT "400 Bad Request": GOTO 50
40 PRINT "404 Not Found"
50 PRINT "./M6 @ Portugal a Programar."

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site you accept our Terms of Use and Privacy Policy. We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.