SqliteJournalMode enum

SQLite journal mode. Set on the primary connection. This library is written with WAL mode in mind - other modes may cause unexpected locking behavior.

Inheritance

Constructors

SqliteJournalMode(String name)
const

Values

wal → const SqliteJournalMode

Use a write-ahead log instead of a rollback journal. This provides good performance and concurrency.

const SqliteJournalMode('WAL')
delete → const SqliteJournalMode
const SqliteJournalMode('DELETE')
truncate → const SqliteJournalMode
const SqliteJournalMode('TRUNCATE')
persist → const SqliteJournalMode
const SqliteJournalMode('PERSIST')
memory → const SqliteJournalMode
const SqliteJournalMode('MEMORY')
off → const SqliteJournalMode
const SqliteJournalMode('OFF')

Properties

hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
name String
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Constants

values → const List<SqliteJournalMode>
A constant List of the values in this enum, in order of their declaration.