SqliteOpenMode Enum

Definition

Represents the connection modes that can be used when opening a connection.

public enum SqliteOpenMode
type SqliteOpenMode = 
Public Enum SqliteOpenMode
Inheritance
SqliteOpenMode

Fields

Memory 3

Opens an in-memory database.

ReadOnly 2

Opens the database in read-only mode.

ReadWrite 1

Opens the database for reading and writing.

ReadWriteCreate 0

Opens the database for reading and writing, and creates it if it doesn't exist.

Applies to