Adding SQLGen

Jason Buberel 2015-09-13 08:22:07 -07:00
parent ed08568284
commit c549bf6627
2 changed files with 2 additions and 0 deletions

@ -18,6 +18,7 @@ An overview of tools that will help improve your Go code
- [gojson](https://github.com/ChimeraCoder/gojson) - Another Go struct generator. - [gojson](https://github.com/ChimeraCoder/gojson) - Another Go struct generator.
- [gonerics.io](http://bouk.co/blog/idiomatic-generics-in-go/) - Idiomatic Generics in Go - [gonerics.io](http://bouk.co/blog/idiomatic-generics-in-go/) - Idiomatic Generics in Go
- [gotemplate](https://github.com/ncw/gotemplate) - Package-based templating system for Go - [gotemplate](https://github.com/ncw/gotemplate) - Package-based templating system for Go
- [sqlgen](https://github.com/drone/sqlgen) - Generate Go code for SQL interactions.
## Refactoring ## Refactoring
- [Refactoring with go fmt](http://spf13.com/post/go-fmt/) - [Refactoring with go fmt](http://spf13.com/post/go-fmt/)

@ -429,6 +429,7 @@ See also [[SQLDrivers page|SQLDrivers]].
* [go-store](https://github.com/gosuri/go-store) - Data-store library for Go that provides a set of platform-independent interfaces to persist and retrieve key-value data. * [go-store](https://github.com/gosuri/go-store) - Data-store library for Go that provides a set of platform-independent interfaces to persist and retrieve key-value data.
* [hood](https://github.com/eaigner/hood) - Database agnostic ORM for Go. Supports Postgres and MySQL. * [hood](https://github.com/eaigner/hood) - Database agnostic ORM for Go. Supports Postgres and MySQL.
* [qbs](https://github.com/coocood/qbs) - Query By Struct. Supports MySQL, PosgreSQL and SQLite3. * [qbs](https://github.com/coocood/qbs) - Query By Struct. Supports MySQL, PosgreSQL and SQLite3.
* [sqlgen](https://github.com/drone/sqlgen) - Go code generation for SQL interaction.
* [xorm](https://github.com/go-xorm/xorm) - Simple and Powerful ORM for Go. * [xorm](https://github.com/go-xorm/xorm) - Simple and Powerful ORM for Go.
### Multiple wrappers ### Multiple wrappers