SqliteCacheMode Enum

Definition

Represents the caching modes that can be used when creating a new SqliteConnection.

public enum SqliteCacheMode
type SqliteCacheMode = 
Public Enum SqliteCacheMode
Inheritance
SqliteCacheMode

Fields

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.

Applies to