configureConnection method

  1. @override
void configureConnection(
  1. Database database,
  2. SqliteOpenOptions options
)

Runs pragmaStatements for a freshly opened connection,

Implementation

@override
void configureConnection(Database database, SqliteOpenOptions options) {
  if (encryptionOptions != null) {
    EncryptionOptions.checkHasCipherPragma(database);
  }

  super.configureConnection(database, options);
}