access 1.0.3+1 access: ^1.0.3+1 copied to clipboard
A simple database utility for the entity library and PostgreSQL.
Access #
A simple database utility for the entity library.
Use #
access((DBAccess access) async {
await for (final Row row in access.query('select ...')) {
...
}
...
await access.execute('update...');
})
//transactions ends here; roll back if an uncaught exception is thrown
.catchError((ex, st) {
...
});