![]() | ![]() Products ![]() ![]() ![]() ![]() |
Home » Technical Support » ElevateDB Technical Support » Product Manuals » ElevateDB Version 2 Manual for RAD Studio XE2 (C++ Win32) » 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 Wednesday, May 28, 2025 at 08:24 AM | Privacy Policy![]() © 2025 Elevate Software, Inc. All Rights Reserved Questions or comments ? ![]() |