Versions in this module Expand all Collapse all v0 v0.0.1 May 21, 2025 Changes in this version + type PgBatch struct + Query func(ctx context.Context, q string, param ...any) *QueryResult + func Connect(c context.Context, p *pgxpool.Pool) *PgBatch + type QueryResult struct + func NewQueryResult(rows []map[string]any) *QueryResult + func (qr *QueryResult) Get(column string) (any, error) + func (qr *QueryResult) GetBool(column string) (bool, error) + func (qr *QueryResult) GetInt(column string) (int, error) + func (qr *QueryResult) GetString(column string) (string, error) + func (qr *QueryResult) Next() bool