G-4210
🆓Warning
Try to use CASE rather than an IF statement with multiple ELSIF paths.
Reason
if
statements containing multiple elsif
tend to become complex quickly.
Example
Non-Compliant Example
declare l_color types_up.color_code_type; begin if l_color = constants_up.co_red then my_package.do_red(); elsif l_color = constants_up.co_blue then my_package.do_blue(); elsif l_color = constants_up.co_black then my_package.do_black(); end if; end; /
Issues
Line | Column | Message |
---|---|---|
4 | 4 |
★★★★★
Compliant Solution -
declare l_color types_up.color_code_type; begin case l_color when constants_up.co_red then my_package.do_red(); when constants_up.co_blue then my_package.do_blue(); when constants_up.co_black then my_package.do_black(); end case; end; /
References
- same as Trivadis G-4210