Versions in this module Expand all Collapse all v0 v0.0.1 Nov 21, 2021 Changes in this version + type PGX interface + Begin func(ctx context.Context) (pgx.Tx, error) + BeginFunc func(ctx context.Context, f func(pgx.Tx) error) error + BeginTx func(ctx context.Context, txOptions pgx.TxOptions) (pgx.Tx, error) + BeginTxFunc func(ctx context.Context, txOptions pgx.TxOptions, f func(pgx.Tx) error) error + CopyFrom func(ctx context.Context, tableName pgx.Identifier, columnNames []string, ...) (int64, error) + Exec func(ctx context.Context, sql string, arguments ...interface{}) (pgconn.CommandTag, error) + Query func(ctx context.Context, sql string, args ...interface{}) (pgx.Rows, error) + QueryFunc func(ctx context.Context, sql string, args []interface{}, scans []interface{}, ...) (pgconn.CommandTag, error) + QueryRow func(ctx context.Context, sql string, args ...interface{}) pgx.Row + SendBatch func(ctx context.Context, b *pgx.Batch) pgx.BatchResults