SynchronizationMode Enumeration
On this page
Determines how the database is synchronized with writing to hard disk.
Syntax
Members
| Member | Description |
| Extra | |
| Full | The database engine will pause at critical moments to make sure that data has actually been written to the disk surface before continuing. |
| Normal | The database engine will still pause at the most critical moments, but less often than in Full mode. The Normal mode is faster than the Full mode. This is the default mode. |
| Off | The database engine continues without pausing as soon as it has handed data off to the operating system. The database might become corrupted if the operating system crashes or the computer loses power. This is the fastest mode. |
Inheritance Hierarchy
System.Object
System.ValueType
System.Enum
Devart.Data.SQLite.SynchronizationMode
See Also