dsql 1.0.7
dsql: ^1.0.7 copied to clipboard
Dart (PostgresSQL) SQL library for generating .dart files from .sql files and migrating the database based on the .sql files! Inspired by ORMs like Prisma (NodeJs) and SQLC (Golang).
1.0.7 #
- Removed deprecated methods
1.0.6 #
- Added DSQL class with Connection and Pool support
- Added Repository class
- Added new helpers
1.0.5 #
- Added a new way to map fields from relationships
1.0.4 #
- Removed (for now) the relationship fields from entities
1.0.3 #
- Migration tool added (see example)
1.0.1 #
- Refactoring progress (
- added a new DSQL.connect that connects to the database and returns a DSQL instance (see example)
- generated entities now have toString and equality methods )
1.0.0+1 #
- Refactor of the library (begin)
0.0.9+8 #
- Bug fix on init method
0.0.9+7 #
- The init method changed
0.0.9+6 #
- Improvement on Where class to avoid unwanted overrides
0.0.9+5 #
- New operator added NOTEQ for where filters.
0.0.9+4 #
- New method to migrate and generate classes.
0.0.9+3 #
- New way to filter from findMany, findFirst and update added.
- New method aggregate added.
0.0.1 #
- Initial version.