Subject Re: [IBO] concurrency locking and IBO-defaults
Author L.M. Bemmelmans
Helen,

It's funny but there are two ways making tiConcurrency work:

A.
COMMIT before each SELECT for "looking" in the tables to be sure you always
see the latest changes
COMMITRETAINING while updating

B.
Just SELECT and let the timer commit once in a while for looking in tables
COMMIT after each update

I tested both ways. It seems you can choose the "updating" party to COMMIT
or the "looking" party.
Is this true, and if so....what solution is best ?

Leon