SqliteCacheMode Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Represents the caching modes that can be used when creating a new SqliteConnection.
public enum SqliteCacheMode
type SqliteCacheMode =
Public Enum SqliteCacheMode
- Inheritance
-
SqliteCacheMode
Fields
Name | Value | Description |
---|---|---|
Default | 0 | Default mode. |
Private | 1 | Private-cache mode. Each connection uses a private cache. |
Shared | 2 | Shared-cache mode. Connections share a cache. This mode can change the behavior of transaction and table locking. |