![]() | Products |
| Home » Technical Support » ElevateDB Technical Support » Product Manuals » ElevateDB Version 2 Manual for RAD Studio XE (Delphi) » Using ElevateDB » Executing Transactions |
begin
with MyDatabase do
begin
StartTransaction(EmptyEDBStringsArray);
try
{ Perform some updates to the table(s) in this database }
Commit;
except
Rollback;
end;
end;
end;var
Tables: TEDBStringsArray;
begin
with MyDatabase do
begin
SetLength(Tables,2);
Tables[0]:='Customer';
Tables[1]:='Orders';
StartTransaction(Tables);
try
{ Perform some updates to the table(s) in the transaction }
Commit;
except
Rollback;
raise;
end;
end;
end;This web page was last updated on Tuesday, September 16, 2025 at 04:56 PM | Privacy Policy © 2026 Elevate Software, Inc. All Rights Reserved Questions or comments ? |

