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
MyConnection.Savepoint and MyConnection.RollbackToSavepoint
-
eduardosic
- Posts: 387
- Joined: Fri 18 Nov 2005 00:26
- Location: Brazil
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.
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.
Last edited by Antaeus on Tue 08 Jul 2008 07:03, edited 1 time in total.
-
eduardosic
- Posts: 387
- Joined: Fri 18 Nov 2005 00:26
- Location: Brazil
Thank's Antaeus.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.