Site icon Embarcadero RAD Studio, Delphi, & C++Builder Blogs

Discover How To Easily Manage Database Transactions In Delphi On Windows

To this end, the sample makes use of the following properties and methods of IFDPhysTransaction:

How to Use the Sample

  1. Navigate to the location given above and open IFDPhys_Transactions.dproj.
  2. Press F9 or choose Run > Run.

Files

File in DelphiContains
IFDPhys_Transactions.dproj
IFDPhys_Transactions.dpr
The project itself.
fTransactions.pas
fTransactions.fmx
The main form.

Implementation

When you run the application, clik the Use Connection Definition combo box and select an option in order to define a connection. When the connection is defined, the sample uses the CreateCommand method of IFDPhysConnection to create a command interface. Then, the sample implements the following database transaction features in run time:Set up the transaction isolation levelThe sample sets the Isolation property of IFDPhysTransaction to xiReadCommitted to allow the reading of committed (permanent) changes made to the database by other simultaneous transactions. This is the default value of the Isolation property.Start a transactionThe sample uses the StartTransaction method to start a new database transaction. During the transaction, the sample uses the Prepare method of IFDPhysCommand to execute a DELETE command. The SQL command is the following: 'delete from {id FDQA_TransTable}'.Commit the transactionThe sample uses the Commit method to permanently store modifications made in the current transaction to the database.Rollback the transactionThe sample uses the Rollback method to cancel all the modifications made in the current transaction.Note: The sample use this method if an exception is raised.

Please follow the link below for more information about this sample:

http://docwiki.embarcadero.com/CodeExamples/Sydney/en/FireDAC.IFDPhysConnection.Transactions_Sample

Head over and check out the full source code for the FireDAC Transactions Windows app sample for Delphi.

Exit mobile version