Ozzo Dbx Versions Save

A Go (golang) package that enhances the standard database/sql package by providing powerful data retrieval methods as well as DB-agnostic query building capabilities.

v1.0.9

6 years ago
  • Fixes #37: Fields in embedded struct should always be shadowed by fields in outer struct
  • Fixes #40: Select queries are not executed in transactions when they should be

v1.0.8

6 years ago
  • Fixes #36: custom field mapping is not respected when querying data using Select and Model

v1.0.7

6 years ago
  • Fixed the issue that select queries are not executed in transactions when they should be

v1.0.6

6 years ago
  • Fixes #30: transactional queries built via ModelQuery are not execute

v1.0.5

7 years ago
  • Support retrieving autoincremental PK value for PostgreSQL (other DBMS are already supported) when calling ModelQuery.Insert()

v1.0.4

7 years ago
  • Enh #19: Exposed GetTableName() to determine the table name associated with a struct
  • Bug #21: Added SelectQuery.Column() to be consistent with Query.Column()

v1.0.3

7 years ago

Bug #18: Auto-incremental PKs are not populated after insertion

v1.0.2

7 years ago
  • Enh #7: Added Query.Column() to support querying the first column of data

v1.0

7 years ago

First public stable release.

v1.0.1

7 years ago
  • Bug #13: correctly handle time.Time fields
  • Doc #14: better documentation for TableModel and database null handling