aboutsummaryrefslogtreecommitdiff
path: root/vendor/github.com/jmoiron/sqlx/doc.go
blob: e2b4e60b2e6c8bcf9928bf08b8efb44e1cbc996b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Package sqlx provides general purpose extensions to database/sql.
//
// It is intended to seamlessly wrap database/sql and provide convenience
// methods which are useful in the development of database driven applications.
// None of the underlying database/sql methods are changed.  Instead all extended
// behavior is implemented through new methods defined on wrapper types.
//
// Additions include scanning into structs, named query support, rebinding
// queries for different drivers, convenient shorthands for common error handling
// and more.
//
package sqlx