G-7110: Try to use named notation when calling program units.
Major
Changeability, Maintainability
Reason
Named notation makes sure that changes to the signature of the called program unit do not affect your call.
This is not needed for standard functions like (to_char
, to_date
, nvl
, round
, etc.) but should be followed for any other stored object having more than one parameter.
Example (bad)
1 2 3 4 5 6 7 |
|
Example (good)
1 2 3 4 5 6 7 |
|