https://github.com/rikulo/access
A simple database utility
https://github.com/rikulo/access
dart database
Last synced: 3 months ago
JSON representation
A simple database utility
- Host: GitHub
- URL: https://github.com/rikulo/access
- Owner: rikulo
- License: apache-2.0
- Created: 2014-07-31T01:49:02.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2026-02-15T04:26:59.000Z (4 months ago)
- Last Synced: 2026-02-15T11:44:39.372Z (4 months ago)
- Topics: dart, database
- Language: Dart
- Homepage: https://quire.io
- Size: 157 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
- Authors: AUTHORS
Awesome Lists containing this project
README
# Access
A simple database utility for the [entity](https://github.com/rikulo/entity) library.
* [API Reference](https://pub.dev/documentation/access/latest/)
* [Github Repos](https://github.com/rikulo/access)
## 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
## Who Uses
* [Quire](https://quire.io) - a simple, collaborative, multi-level task management tool.
* [Keikai](https://keikai.io) - a sophisticated spreadsheet for big data
* [Ottava](https://ottava.io) - a no-code SaaS platform simplifying data management, chart creation, and data analysis.