Application with Database back-end becomes very slow as more users connect.

  • Thread starter david epsom dot com dot au
  • Start date
S

Sylvain Lafontaine

They are probably speaking of any databases using byte range locking:
Access, FileMaker, FoxPro, etc.
 
D

david epsom dot com dot au

I'm not an expert, so I don't know if FoxPro would use
byte range locking as described in the article. (Which
describes sequentially attempting byte range locking until
a free range is found).

In Access as I understand it, you lock byte ranges that
do not correspond to byte ranges in the data file, and
you check the lock file until you find a free range.

On the other hand, if you are just trying to lock physical
records in a FoxPro table, you just lock the range that
includes the physical records, so there would be no reason
to walk through sequential byte ranges.

????

(david)
 
Top