database property
RelationalDatabaseAdapter
get
database
Implementation
static RelationalDatabaseAdapter get database {
final db = _database;
if (db == null) {
throw StateError(
'RelationalOrm is not configured. '
'Call RelationalOrm.configure(database: ...) before using queries.',
);
}
return db;
}