Page 1 of 1
MyConnection.Savepoint and MyConnection.RollbackToSavepoint
Posted: Sun 06 Jul 2008 22:58
by eduardosic
Hi Devart Team..
I don't find any reference for MyConnection.Savepoint(); and MyConnection1.RollbackToSavepoint(); in MyDAC Help or History File.
Please explain the function.
i use MyDAC 5.50.0.35 and Delphi 2007 for Win32
thank's
Posted: Mon 07 Jul 2008 09:08
by Antaeus
In MyDAC 5.50 functionality to work with save points was added. It is implemented with the following three methods in TMyConnection:
Savepoint, RollbackToSavepoint, ReleaseSavepoint. These methods execute the following MySQL statements correspondingly: SAVEPOINT, ROLLBACK [WORK] TO [SAVEPOINT], RELEASE SAVEPOINT. At the moment there is no description of these methods in the MyDAC help, but we will add it as soon as possible. At the moment you can refer to
this topic of MySQL Reference Manual for information.
Posted: Mon 07 Jul 2008 11:29
by eduardosic
Antaeus wrote:In MyDAC 5.50 functionality to work with save points was added. It is implemented with the following three methods in TMyConnection:
Savepoint, RollbackToSavepoint, ReleaseSavepoint. These methods executes the following MySQL statements correspondingly: SAVEPOINT, ROLLBACK [WORK] TO [SAVEPOINT], RELEASE SAVEPOINT. At the moment there is no description of these method in the MyDAC help, but we will add it as soon as possible. At the moment you can refer to
this topic of MySQL Reference Manual for information.
Thank's Antaeus.