Re: The Transaction Check Point...

2002-10-10 Thread Paul DuBois
At 15:10 -0300 10/10/02, Dyego Souza do Carmo wrote: >In mySQL 4.0 the "Transaction multi points" are supported ? > > >ex: > >BEGIN; >INSERT INTO A VALUES (1); >BEGIN WORK2; >INSERT INTO A VALUES (2); >ROLLBACK TO WORK2; >COMMIT; > >In this case only value 1 are inserted in the table ! > > >mysql

The Transaction Check Point...

2002-10-10 Thread Dyego Souza do Carmo
In mySQL 4.0 the "Transaction multi points" are supported ? ex: BEGIN; INSERT INTO A VALUES (1); BEGIN WORK2; INSERT INTO A VALUES (2); ROLLBACK TO WORK2; COMMIT; In this case only value 1 are inserted in the table ! mysql 4 suports it ? sql,query --