thanks already for all your helpful comments! I have another issue about migration from DBF to ADS. How should I deal with concurrency control from DbServer? I want to use Advantage Proprietary Locking. In my DBF code there are a lot of calls to
Code: Select all
self:concurrencyControl := CCNONE
Code: Select all
self:RLOCK (nRecno) .... self::Unlock()
Does that mean that I should get rid of all the lock/unlock calls in my code? How should I configure DbServer:concurrencyControl? Or will ADS simply ignore my API calls?The Advantage Database Server uses an intelligent lock management system with its proprietary locking mode that eliminates lock retries and requires no network traffic. The Advantage Database Server uses an internal queuing algorithm that allows application locks to occur without making network operating system lock API calls. All locking information is maintained internally in the lock queues.
Thanks.