Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type DB ¶
type DB interface {
Querier
BeginTxx(ctx context.Context, opts *sql.TxOptions) (Tx, error)
Close() error
}
DB wraps sqlx.Tx and sqlx.DB https://github.com/jmoiron/sqlx/issues/344#issuecomment-318372779
type Querier ¶
type Querier interface {
NamedExecContext(ctx context.Context, query string, arg interface{}) (sql.Result, error)
ExecContext(ctx context.Context, query string, args ...interface{}) (sql.Result, error)
GetContext(ctx context.Context, dest interface{}, query string, args ...interface{}) error
Rebind(query string) string
BindNamed(query string, arg interface{}) (string, []interface{}, error)
SelectContext(ctx context.Context, dest interface{}, query string, args ...interface{}) error
}
Querier common operations for sqlx.Tx and sqlx.DB
Click to show internal directories.
Click to hide internal directories.