TurboDB.NET Managed Provider
TurboDBLockType Enumeration
Top 


Indicates the kind of lock applied on a database table.

[C#]
[Serializable]
public enum TurboDBLockType

Members
Read
A read lock prevents other sessions from modifying the database table. This includes appending new rows. Any number of read locks can be placed on a table from any number of sessions at the same time.
Write
A write lock prevents other sessions from accessing the database table in any way. A write lock cannot be placed on a table, if there is already a write lock or read lock set by another session.


See also
Shared Tables | Table Locks