Subject | Re: [IBO] Multi-user app |
---|---|
Author | Ales Kahanek |
Post date | 2002-08-01T07:42:48Z |
You can set the TIB_Query.BufferSynchroFlags property to appropriate values
you need, at least to [bsBeforeEdit] in Scenario2.
TIB_BufferSynchroFlags = ( bsBeforeEdit, bsAfterEdit, bsAfterInsert );
Ales
you need, at least to [bsBeforeEdit] in Scenario2.
TIB_BufferSynchroFlags = ( bsBeforeEdit, bsAfterEdit, bsAfterInsert );
Ales
> Scenario 2
> User A and B both looks at the same data. User A edits and save the
> data. User B now clicks 'Edit'. Ideally, I would like to (re)fetch
> the updated data to the user so that the latest changes are visible.
> What is the best method to do this?
>