Microsoft SQL Server Compact 3.5 supports multigranular locking that permits different types of resources to be locked by a transaction.
Automatic Locking
SQL Server Compact 3.5 automatically locks the required data to protect all the operations of a transaction, including:
Data manipulation language (DML)
Data definition language (DDL)
Query statements at the required isolation level
SQL Server Compact 3.5 automatically locks rows of data, and any relevant index pages, to ensure maximum concurrency. As a transaction locks more resources, the granularity of the lock automatically increases to an entire table so that lock maintenance is reduced.
In This Section
Topic |
Description |
---|---|
Describes the basics. |
|
Describes the process of converting many fine-grain locks into fewer coarse-grain locks. |
|
Describes the process of determining lock compatibility. |