Documentation
¶
Index ¶
- Variables
- func Create(db *sql.DB, tx *sql.Tx, query string, args ...interface{}) (newID uint64, err error)
- func EndTx(tx *sql.Tx, err error) error
- func Exec(db *sql.DB, tx *sql.Tx, query string, args ...interface{}) (err error)
- func GetRow(db *sql.DB, query string, args ...interface{}) *sql.Row
- func GetTx(db *sql.DB, tx *sql.Tx) (*sql.Tx, error)
- func New(config Config) (*sql.DB, error)
- func Ping(db *sql.DB) bool
- func RowsClose(rows *sql.Rows, err error) error
- type Config
- type RowScanner
Constants ¶
This section is empty.
Variables ¶
View Source
var ( // ErrNoHost occurs when host is not provided in configuration ErrNoHost = errors.New("no host for database connection") // SQLTimeout when running queries SQLTimeout = time.Second * 5 )
Functions ¶
Types ¶
type RowScanner ¶ added in v3.16.0
type RowScanner interface {
Scan(...interface{}) error
}
RowScanner describes scan ability of a row
Click to show internal directories.
Click to hide internal directories.