NativeDatabase.memory constructor
NativeDatabase.memory(
- {bool logStatements = false,
- DatabaseSetup? setup,
- bool cachePreparedStatements = _cacheStatementsByDefault}
Creates an in-memory database won't persist its changes on disk.
If logStatements
is true (defaults to false
), generated sql statements
will be printed before executing. This can be useful for debugging.
The cachePreparedStatements
flag (defaults to false
) controls whether
drift will cache prepared statement objects, which improves performance as
sqlite3 doesn't have to parse statements that are frequently used multiple
times. This will be the default in the next minor drift version.
The optional setup
function can be used to perform a setup just after
the database is opened, before drift is fully ready. This can be used to
add custom user-defined sql functions or to provide encryption keys in
SQLCipher implementations.
Implementation
factory NativeDatabase.memory({
bool logStatements = false,
DatabaseSetup? setup,
bool cachePreparedStatements = _cacheStatementsByDefault,
}) {
return NativeDatabase._(
_NativeDelegate(null, setup, cachePreparedStatements),
logStatements,
);
}