Specifies file modes for opening a database file.
Unit
MSClasses
Syntax
TMSInitMode = (imReadOnly, imReadWrite, imExclusive, imShareRead);
Values
Value | Meaning |
imExclusive |
Database file is opened for exclusive use. This mode prevents others from opening this database file. |
imReadOnly |
Database file is opened for reading. Any modification operations are not allowed. |
imReadWrite |
Both read and write operations are allowed. The default value. |
imShareRead |
The database file is opened for reading and writing only by one user. Other users can not read or write to the database file. |