SqliteOpenMode 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 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. |