Versions in this module Expand all Collapse all v0 v0.0.1 Mar 5, 2023 Changes in this version + type Pool interface + BeginTx func(ctx context.Context, txOptions *pgx.TxOptions) (Tx, error) + func NewPool(pool *pgxpool.Pool) Pool + type Queryable interface + Exec func(ctx context.Context, query sqlizer) (pgconn.CommandTag, error) + ExecRaw func(ctx context.Context, sql string, args ...any) (pgconn.CommandTag, error) + Get func(ctx context.Context, dst any, sqlizer sqlizer) error + GetRaw func(ctx context.Context, dst any, sql string, args ...any) error + Select func(ctx context.Context, dst any, query sqlizer) error + SelectRaw func(ctx context.Context, dst any, sql string, args ...any) error + type Tx interface + Commit func(ctx context.Context) error + Rollback func(ctx context.Context) error