- You can now passed an IdentiferExpression to
As
#8 - @croachrose - Added info about installation through gopkg.in
- Fixed issue setting Logger when starting a new transaction.
- 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.
- 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
- Added:
- More tests and examples
- Added CONTRIBUTING.md
- Added LICENSE information
- Removed godoc introduction in favor of just maintaining the README.
- Fixed issue with goqu.New not returning a pointer to a Database
- Initial release