Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
END TRANSACTION loses records
Message
From
16/03/2004 12:27:16
 
 
To
All
General information
Forum:
Visual FoxPro
Category:
Databases,Tables, Views, Indexing and SQL syntax
Title:
END TRANSACTION loses records
Miscellaneous
Thread ID:
00886754
Message ID:
00886754
Views:
65
I have 3 tables that I need to update in a transaction. I have each table set with buffering. Payments = buffmode 3, PaymentDetails = buffmode 5, AccountsReceivable = buffmode 5. One table loses the updates when END TRANSACTION is issued.

* here is a synopsis of the code that fails.
BEGIN TRANSACTION
SELECT Payments
* There is a new inserted record in this table
IF NOT TABLEUPDATE(.T.)
ROLLBACK
TABLEREVERT(.T.)
RETURN
ENDIF

... DO STUFF
SELECT PaymentDetails
* There are new inserted records in this table
IF NOT TABLEUPDATE(.T.)
ROLLBACK
TABLEREVERT(.T.)
RETURN
ENDIF

... DO STUFF
SELECT AccountsReceivable
* There are updated records in this table
IF NOT TABLEUPDATE(.T.)
ROLLBACK
TABLEREVERT(.T.)
RETURN
ENDIF

* At this point, all tables have correctly been updated.
END TRANSACTION
* Now, the Payments table does not have the new record, but
* the PaymentDetails and AccountsReceivable tables are correctly
* saved.

Any ideas here would be greatly appreciated.
David
Next
Reply
Map
View

Click here to load this message in the networking platform