open method
Opens a direct connection to a SQLite database connection and executes setup pragma statements to initialize the DB
Implementation
@override
CommonDatabase open(SqliteOpenOptions options) {
var db = _retriedOpen(options);
for (final statement in pragmaStatements(options)) {
db.select(statement);
}
setupFunctions(db);
return db;
}