rules repository

G-4395

🆓
Warning

Avoid hard-coded upper or lower bound values with FOR loops.

Reason

Your loop statement uses a hard-coded value for either its upper or lower bounds. This creates a "weak link" in your program because it assumes that this value will never change. A better practice is to create a named constant (or function) and reference this named element instead of the hard-coded value.

Example

Non-Compliant Example

begin
   <<for_loop>>
   for i in 2..5
   loop
      sys.dbms_output.put_line(i);
   end loop for_loop;
end;
/
Issues
LineColumnMessage
313Hard-coded lower bound value 2 in FOR loop.
316Hard-coded upper bound value 5 in FOR loop.

Compliant Solution - ★★★★★

declare
   co_lower_bound constant simple_integer := 2;
   co_upper_bound constant simple_integer := 5;
begin
   <<for_loop>>
   for i in co_lower_bound..co_upper_bound
   loop
      sys.dbms_output.put_line(i);
   end loop for_loop;
end;
/

Parameters

Use parameters to customize the rule to your needs.

ParameterDescriptionDefault Value
AllowedMagicValuesComma separated List of allowed literals in code.-1, 0, 1

References