MyConnection.Savepoint and MyConnection.RollbackToSavepoint

Discussion of open issues, suggestions and bugs regarding MyDAC (Data Access Components for MySQL) for Delphi, C++Builder, Lazarus (and FPC)
Post Reply
eduardosic
Posts: 387
Joined: Fri 18 Nov 2005 00:26
Location: Brazil

MyConnection.Savepoint and MyConnection.RollbackToSavepoint

Post by eduardosic » Sun 06 Jul 2008 22:58

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

Antaeus
Posts: 2098
Joined: Tue 14 Feb 2006 10:14

Post by Antaeus » Mon 07 Jul 2008 09:08

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.
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

Post by eduardosic » Mon 07 Jul 2008 11:29

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.

Post Reply