Versions in this module Expand all Collapse all v1 v1.0.3 May 29, 2026 v1.0.2 May 29, 2026 Changes in this version + type Pool struct + func New(pool *pgxpool.Pool) *Pool + func (p *Pool) InTx(ctx context.Context, fn func(ctx context.Context) error) error + func (p *Pool) InTxWithIsoLevel(ctx context.Context, isoLevel pgx.TxIsoLevel, ...) error + func (p *Pool) Querier(ctx context.Context) Querier + type Querier interface + CopyFrom func(ctx context.Context, tableName pgx.Identifier, columnNames []string, ...) (int64, error) + Exec func(ctx context.Context, sql string, arguments ...any) (commandTag pgconn.CommandTag, err error) + Query func(ctx context.Context, sql string, args ...any) (pgx.Rows, error) + QueryRow func(ctx context.Context, sql string, args ...any) pgx.Row + type Transactor interface + InTx func(ctx context.Context, fn func(ctx context.Context) error) error + InTxWithIsoLevel func(ctx context.Context, isoLevel pgx.TxIsoLevel, ...) error