Releases: doug-martin/goqu
Releases · doug-martin/goqu
v2.0.2
- Changed references to "github.com/doug-martin/goqu" to "gopkg.in/doug-martin/goqu.v2"
v2.0.1
- Fixed issue when
ScanStruct(s)
was used withSelectDistinct
and caused a panic.
v2.0.0
- When scanning a struct or slice of structs, the struct(s) will be parsed for the column names to select. #9- @TechnotronicOz
v1.0.0
v0.3.1
- Fixed issue setting Logger when starting a new transaction.
v0.3.0
- Changed sql generation methods to use a common naming convention.
To(Sql|Insert|Update|Delete)
- Also changed to have common return values
string, []interface{}, error)
- Also changed to have common return values
- Added
Dataset.Prepared
which allows a user to specify whether or not SQL should be interpolated. #7 - Updated Docs
- More examples
- Increased test coverage.
v0.2.0
- Changed
CrudExec
to not wrap driver errors in a GoquError #2 - Added ability to use a dataset in an
Ex
map orEq
expression without having to useIn
#3db.From("test").Where(goqu.Ex{"a": db.From("test").Select("b")})
- Updated readme with links to
DefaultAdapter
v0.1.1
v0.1.0
v0.0.2
- Fixed issue with goqu.New not returning a pointer to a Database