github.com/jackc/pgx/v4.dbSavepoint.tx (field)

11 uses

	github.com/jackc/pgx/v4 (current package)
		tx.go#L186: 	return &dbSavepoint{tx: tx, savepointNum: tx.savepointNum}, nil
		tx.go#L325: 	tx           Tx
		tx.go#L336: 	return sp.tx.Begin(ctx)
		tx.go#L344: 	return sp.tx.BeginFunc(ctx, f)
		tx.go#L377: 	return sp.tx.Exec(ctx, sql, arguments...)
		tx.go#L386: 	return sp.tx.Prepare(ctx, name, sql)
		tx.go#L397: 	return sp.tx.Query(ctx, sql, args...)
		tx.go#L412: 	return sp.tx.QueryFunc(ctx, sql, args, scans, f)
		tx.go#L421: 	return sp.tx.CopyFrom(ctx, tableName, columnNames, rowSrc)
		tx.go#L430: 	return sp.tx.SendBatch(ctx, b)
		tx.go#L438: 	return sp.tx.Conn()