Access
A simple database utility for the entity library.
Use
await access((access) async {
await for (final row in access.query('select ...')) {
...
}
...
await access.execute('update...');
});
//transactions ends here; roll back if an uncaught exception is thrown