![]() | Products |
| Home » Technical Support » ElevateDB Technical Support » Product Manuals » ElevateDB Version 2 Manual for RAD Studio XE6 (C++ Win64) » Using ElevateDB » Executing Transactions |
{
MyDatabase->StartTransaction(EmptyEDBStringsArray);
try
{
// Perform some updates to the table(s) in this database
MyDatabase->Commit();
}
catch
{
MyDatabase->Rollback();
throw;
}
}{
TEDBStringsArray Tables;
Tables.Length = 2;
Tables[1]="Customer";
Tables[2]="Orders";
MyDatabase->StartTransaction(Tables);
try
{
// Perform some updates to the table(s) in this database
MyDatabase->Commit();
}
catch
{
MyDatabase->Rollback();
throw;
}
}
}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 ? |

