type github.com/jackc/pgx/v4.dbTx

15 uses

	github.com/jackc/pgx/v4 (current package)
		tx.go#L85: 	return &dbTx{conn: c}, nil
		tx.go#L167: type dbTx struct {
		tx.go#L175: func (tx *dbTx) Begin(ctx context.Context) (Tx, error) {
		tx.go#L189: func (tx *dbTx) BeginFunc(ctx context.Context, f func(Tx) error) (err error) {
		tx.go#L216: func (tx *dbTx) Commit(ctx context.Context) error {
		tx.go#L240: func (tx *dbTx) Rollback(ctx context.Context) error {
		tx.go#L257: func (tx *dbTx) Exec(ctx context.Context, sql string, arguments ...interface{}) (commandTag pgconn.CommandTag, err error) {
		tx.go#L262: func (tx *dbTx) Prepare(ctx context.Context, name, sql string) (*pgconn.StatementDescription, error) {
		tx.go#L271: func (tx *dbTx) Query(ctx context.Context, sql string, args ...interface{}) (Rows, error) {
		tx.go#L282: func (tx *dbTx) QueryRow(ctx context.Context, sql string, args ...interface{}) Row {
		tx.go#L288: func (tx *dbTx) QueryFunc(ctx context.Context, sql string, args []interface{}, scans []interface{}, f func(QueryFuncRow) error) (pgconn.CommandTag, error) {
		tx.go#L297: func (tx *dbTx) CopyFrom(ctx context.Context, tableName Identifier, columnNames []string, rowSrc CopyFromSource) (int64, error) {
		tx.go#L306: func (tx *dbTx) SendBatch(ctx context.Context, b *Batch) BatchResults {
		tx.go#L315: func (tx *dbTx) LargeObjects() LargeObjects {
		tx.go#L319: func (tx *dbTx) Conn() *Conn {