configureConnection method
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);
}