github.com/jackc/pgx/v5.Tx.Exec (method)

5 uses

	github.com/jackc/pgx/v5 (current package)
		large_objects.go#L153: 	_, err = o.tx.Exec(o.ctx, "select lo_truncate64($1, $2)", o.fd, size)
		large_objects.go#L159: 	_, err := o.tx.Exec(o.ctx, "select lo_close($1)", o.fd)
		tx.go#L145: 	Exec(ctx context.Context, sql string, arguments ...any) (commandTag pgconn.CommandTag, err error)
		tx.go#L333: 	return sp.tx.Exec(ctx, sql, arguments...)

	github.com/jackc/pgx/v5/pgxpool
		tx.go#L70: 	return tx.t.Exec(ctx, sql, arguments...)