![]() | Products |
| Home » Technical Support » DBISAM Technical Support » Product Manuals » DBISAM Version 4 Manual for RAD Studio XE (Delphi) » Using DBISAM » Transactions |
begin
with MyDatabase do
begin
StartTransaction;
try
{ Perform some updates to the table(s) in this database }
Commit;
except
Rollback;
end;
end;
end;var
TablesList: TStrings;
begin
TablesList:=TStringList.Create;
try
with MyDatabase do
begin
TablesList.Add('Customer');
TablesList.Add('Orders');
StartTransaction(TablesList);
try
{ Perform some updates to the table(s) in the transaction }
Commit;
except
Rollback;
raise;
end;
finally
TablesList.Free;
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 ? |

