Enumeration Casegrdb 7.4.0GRDB
wal
The journal mode is set to WAL (plus extra configurations that make life easier with WAL databases).
case wal
The journal mode is set to WAL (plus extra configurations that make life easier with WAL databases).
case wal
import GRDB
A toolkit for SQLite databases, with a focus on application development
enum JournalModeConfiguration
Defines how the journal mode is configured when the database connection is opened.
struct Configuration
The configuration of a database connection.
case `default`
The default setup has DatabaseQueue
perform no specific configuration of the journal mode, and DatabasePool
configure the database for the WAL mode (just like the wal
case).