Click or drag to resize
ConnectionFlags Enumeration
Flags For File Open Operations

Namespace: SQLitePCL.pretty
Assembly: SQLitePCL.pretty (in SQLitePCL.pretty.dll) Version: 1.0.0.0 (1.0.0)
Syntax
[FlagsAttribute]
public enum ConnectionFlags
Members
  Member nameValueDescription
ReadOnly1 Opens the database as readonly.
ReadWrite2 Open the database is for reading and writing if possible.
Create4 Creates the database if it does not already exist.
Uri64 Enables URI filename interpretation.
Memory128
NoMutex32768 Opens the database connection in the multi-thread threading mode as long as the single-thread mode has not been set at compile-time or start-time.
FullMutex65536 Opens the database connection in the serialized threading mode unless single-thread was previously selected at compile-time or start-time.
SharedCached131072 Causes the database connection to be eligible to use shared cache mode, regardless of whether or not shared cache is enabled.
PrivateCache262144 Causes the database connection to not participate in shared cache mode even if it is enabled.
See Also