go-sample-webpage/vendor/github.com/jmoiron/sqlx/doc.go
kekskurse e887a5e9b8
Some checks failed
continuous-integration/drone/push Build is failing
mysql for user
2021-11-23 21:32:55 +01:00

12 lines
570 B
Go

// 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