Share via


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

Name Value Description
ReadWriteCreate 0

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

ReadWrite 1

Opens the database for reading and writing.

ReadOnly 2

Opens the database in read-only mode.

Memory 3

Opens an in-memory database.

Applies to