Documentation
¶
Index ¶
- Variables
- func Create(ctx context.Context, query string, args ...interface{}) (uint64, error)
- func DoAtomic(ctx context.Context, db *sql.DB, action func(context.Context) error) error
- func Exec(ctx context.Context, db *sql.DB, query string, args ...interface{}) error
- func GetRow(ctx context.Context, db *sql.DB, scanner func(RowScanner) error, query string, ...) 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.