diff --git a/README.md b/README.md index 0d2263e..0b0772d 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ A comparison of popular Go SQL query builders. Provides feature list and benchma 1. dbr: https://github.com/gocraft/dbr 2. squirrel: https://github.com/lann/squirrel 3. sqrl: https://github.com/elgris/sqrl -4. gocu: github.com/doug-martin/goqu - just for SELECT query +4. goqu: https://github.com/doug-martin/goqu - just for SELECT query # Feature list @@ -91,4 +91,4 @@ If really need immutability of query builder and you're ready to sacrifice extra If you like those sweet helpers that `squirrel` provides to ease your query building or if you plan to use the same builder for `PostgreSQL`, take `sqrl` as it's balanced between performance and features. -`goqu` has LOTS of features and ways to build queries. Although it requires stubbing sql connection if you need just to build a query. It can be done with [sqlmock](http://github.com/DATA-DOG/go-sqlmock). Disadvantage: the builder is slow and has TOO MANY features, so building a query may become a nightmare. But if you need total control on everything - this is your choice. \ No newline at end of file +`goqu` has LOTS of features and ways to build queries. Although it requires stubbing sql connection if you need just to build a query. It can be done with [sqlmock](http://github.com/DATA-DOG/go-sqlmock). Disadvantage: the builder is slow and has TOO MANY features, so building a query may become a nightmare. But if you need total control on everything - this is your choice.