org.sonar.l10n.plsqlopen.rules.plsql.IfWithExit.html Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zpa-checks Show documentation
Show all versions of zpa-checks Show documentation
Z PL/SQL Analyzer :: Checks
The newest version!
To improve the code readability always use EXIT WHEN instead of an IF statement to exit from a loop.
Noncompliant Code Example
if condition1 then
exit;
end if;
Compliant Solution
exit when condition1;