Readme update

This commit is contained in:
Michał Matczuk
2018-04-20 14:41:11 +02:00
parent 12d360a0c3
commit ecf0820d1d

View File

@@ -13,14 +13,18 @@ hood it uses `sqlx/reflectx` package so `sqlx` models will also work with `gocql
## Features ## Features
* Builders for `SELECT`, `INSERT`, `UPDATE` `DELETE` and `BATCH` (supporting collections, counters and functions) * Binding query parameters form struct or map
* Queries with named parameters (:identifier) support * Scanning results directly into struct or slice
* Binding parameters form struct or map
* Scanning results into structs and slices
* Automatic query releasing
* Schema migrations
* Fast! * 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 ## Example
```go ```go