Versions in this module Expand all Collapse all v1 v1.0.1 Oct 19, 2025 v1.0.0 Oct 19, 2025 Changes in this version + func AsPgError(err error) (*pgconn.PgError, bool) + func IsNoRows(err error) bool + type DBer interface + Exec func(ctx context.Context, sql string, args ...any) (ports.DatabaseResult, error) + Query func(ctx context.Context, sql string, args ...any) (ports.DatabaseRows, error) + QueryRow func(ctx context.Context, sql string, args ...any) ports.DatabaseRow + func FromCtx(ctx context.Context, pool ports.DatabasePool) DBer + type Manager struct + Pool ports.DatabasePool + func New(pool ports.DatabasePool) *Manager + func (m *Manager) WithinTx(ctx context.Context, fn func(ctx context.Context) error) error