From ecf0820d1d197f7252c0c2c7be055f218aeb87e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Matczuk?= Date: Fri, 20 Apr 2018 14:41:11 +0200 Subject: [PATCH] Readme update --- README.md | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index bfbcaa1..519d339 100644 --- a/README.md +++ b/README.md @@ -13,14 +13,18 @@ hood it uses `sqlx/reflectx` package so `sqlx` models will also work with `gocql ## Features -* Builders for `SELECT`, `INSERT`, `UPDATE` `DELETE` and `BATCH` (supporting collections, counters and functions) -* Queries with named parameters (:identifier) support -* Binding parameters form struct or map -* Scanning results into structs and slices -* Automatic query releasing -* Schema migrations +* Binding query parameters form struct or map +* Scanning results directly into struct or slice * Fast! +In addition to that: + +Package `qb` provides query builders for `SELECT`, `INSERT`, `UPDATE` `DELETE` +and `BATCH` statements supporting full spec including literals, functions, +collections and counters. + +Package `migrate` provides a simple database migration system. + ## Example ```go