Command SET EXCLUSIVE Foundation
Determines whether files are opened as SHARED or EXCLUSIVE by default.
SET EXCLUSIVE on | OFF | <lToggle>
The command SET EXCLUSIVE exists only for compatibility reasons and should no longer be used. Instead, the options SHARED or EXCLUSIVE should be explicitly specified in each call to the USE command.
Xbase++ defaults the initial value of SET EXCLUSIVE to .F. (false), meaning that files opened with the USE command are opened in the SHARED mode if the option SHARED or EXCLUSIVE is not specified. Multi-user access to files on the network is then allowed. Before any write operations, records must be locked using RLock() or DbRlock(), or the file must be locked using FLock().
When files are opened in the exclusive mode, no other workstation can access the files until they are closed using CLOSE and reopened with the SHARED option. In the exclusive mode, no file or record lock is required for write access. Files must be exclusively opened only in a few instances, such as the file operations performed by the commands PACK, ZAP and REINDEX.
If you see anything in the documentation that is not correct, does not match your experience with the particular feature or requires further clarification, please use this form to report a documentation issue.