From 3dafaf66be795ae48ecc4747c5bcb5dfe1da6c44 Mon Sep 17 00:00:00 2001 From: areski Date: Sat, 20 Dec 2014 01:21:18 +0100 Subject: [PATCH 1/3] Add SQL Query Builder Section with Squirrel & Dotsql --- README.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 7e3bddc..9e2958d 100644 --- a/README.md +++ b/README.md @@ -356,7 +356,6 @@ Please take a quick gander at the [contribution guidelines](https://github.com/a * [mathgl](https://github.com/go-gl/mathgl) - Pure Go math package specialized for 3D math, with inspiration from GLM. - ## ORM *Libraries that implement Object-Relational Mapping or datamapping techniques.* @@ -370,6 +369,14 @@ Please take a quick gander at the [contribution guidelines](https://github.com/a * [Xorm](https://github.com/go-xorm/xorm) - Simple and powerful ORM for Go. +## SQL Query Builder + +*Libraries for building and using SQL.* + +* [Squirrel](https://github.com/lann/squirrel) - Go library that helps you build SQL queries. +* [Dotsql](https://github.com/gchaincl/dotsql) - Go library that helps you keep sql files in one place and use it with ease. + + ## Package Management *Libraries for package and dependency management.* From d2a0a07bdf3e4ff030b671d3ee7042b4d55d0713 Mon Sep 17 00:00:00 2001 From: areski Date: Mon, 29 Dec 2014 17:55:00 +0100 Subject: [PATCH 2/3] Move SQL builder to sub-category of Database --- README.md | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 9e2958d..e92b309 100644 --- a/README.md +++ b/README.md @@ -134,6 +134,11 @@ Please take a quick gander at the [contribution guidelines](https://github.com/a * [pgweb](https://github.com/sosedoff/pgweb) - A web-based PostgreSQL database browser * [vitess](https://github.com/youtube/vitess) - vitess provides servers and tools which facilitate scaling of MySQL databases for large scale web services. +*SQL query builder, libraries for building and using SQL.* + +* [Squirrel](https://github.com/lann/squirrel) - Go library that helps you build SQL queries. +* [Dotsql](https://github.com/gchaincl/dotsql) - Go library that helps you keep sql files in one place and use it with ease. + ## Database Drivers *Libraries for connecting and operating databases. (see [Testing](#testing) for mock drivers)* @@ -369,14 +374,6 @@ Please take a quick gander at the [contribution guidelines](https://github.com/a * [Xorm](https://github.com/go-xorm/xorm) - Simple and powerful ORM for Go. -## SQL Query Builder - -*Libraries for building and using SQL.* - -* [Squirrel](https://github.com/lann/squirrel) - Go library that helps you build SQL queries. -* [Dotsql](https://github.com/gchaincl/dotsql) - Go library that helps you keep sql files in one place and use it with ease. - - ## Package Management *Libraries for package and dependency management.* From c564923fc3f86c6d744ecec63280ac804566bcb7 Mon Sep 17 00:00:00 2001 From: areski Date: Mon, 29 Dec 2014 19:04:56 +0100 Subject: [PATCH 3/3] Fix order --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e92b309..0b629ae 100644 --- a/README.md +++ b/README.md @@ -136,8 +136,8 @@ Please take a quick gander at the [contribution guidelines](https://github.com/a *SQL query builder, libraries for building and using SQL.* -* [Squirrel](https://github.com/lann/squirrel) - Go library that helps you build SQL queries. * [Dotsql](https://github.com/gchaincl/dotsql) - Go library that helps you keep sql files in one place and use it with ease. +* [Squirrel](https://github.com/lann/squirrel) - Go library that helps you build SQL queries. ## Database Drivers