This enum determines how SQLite treats its journal file.
Syntax
public enum SQLiteJournalModeEnum
Remarks
Members
| Member Name | Description |
|---|
| Delete |
The default mode, this causes SQLite to create and destroy the journal file as-needed.
|
| Off |
This option disables the rollback journal entirely. Interrupted transactions or a program crash can cause database
corruption in this mode!
|
| Persist |
When this is set, SQLite will keep the journal file even after a transaction has completed. It's contents will be erased,
and the journal re-used as often as needed. If it is deleted, it will be recreated the next time it is needed.
|
Requirements
Namespace: Mono.Data.Sqlite
Assembly: Mono.Data.Sqlite (in Mono.Data.Sqlite.dll)
Assembly Versions: 4.0.0.0