Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Table update with true and false
Message
General information
Forum:
Visual FoxPro
Category:
Other
Miscellaneous
Thread ID:
00746726
Message ID:
00746728
Views:
15
As in VFP Help:

TABLEUPDATE([nRows [, lForce]] [, cTableAlias | nWorkArea]
[, cErrorArray])
......

lForce

Determines whether changes made to the table or cursor by another user on a network are overwritten. If lForce is true (.T.), any changes made to the table or cursor by another user on a network are overwritten.

If lForce is false (.F.), Visual FoxPro commits changes to the table or cursor, starting with the first record and continuing towards the end of the table or cursor. If a record modified by another user on the network is encountered, Visual FoxPro generates an error.

When Visual FoxPro generates the error, you can handle the error through an ON ERROR routine, and the ON ERROR routine can issue TABLEUPDATE( ) with lForce set to true (.T.) to commit changes to the record. Alternately, if a transaction is in progress, the ON ERROR routine can handle the error and then issue ROLLBACK to revert the table or cursor to its original state.

The default for lForce is false (.F.).
.......




>What is the difference between table update with true and true
>= tableupdate(.t.,.t.)
>
>And with
>
>Table update with true and false(= tableupdate(.t.,.f.)
>
>
>Thank you.
Previous
Reply
Map
View

Click here to load this message in the networking platform