2020-12-23 14:59:06 +01:00
|
|
|
A ``GOTO`` statement is an unstructured change in the control flow. They should be avoided and replaced by structured constructs.
|
2020-06-30 12:50:59 +02:00
|
|
|
|
|
|
|
== Noncompliant Code Example
|
|
|
|
|
|
|
|
----
|
|
|
|
SET SERVEROUTPUT ON
|
|
|
|
|
|
|
|
DECLARE
|
|
|
|
i PLS_INTEGER := 42;
|
|
|
|
BEGIN
|
|
|
|
IF i < 0 THEN
|
|
|
|
GOTO negative; -- Noncompliant
|
|
|
|
END IF;
|
|
|
|
|
|
|
|
DBMS_OUTPUT.PUT_LINE('positive');
|
|
|
|
goto cleanup; -- Noncompliant
|
|
|
|
|
|
|
|
<<negative>>
|
|
|
|
DBMS_OUTPUT.PUT_LINE('negative!');
|
|
|
|
|
|
|
|
<<cleanup>>
|
|
|
|
NULL;
|
|
|
|
END;
|
|
|
|
/
|
|
|
|
----
|
|
|
|
|
|
|
|
== Compliant Solution
|
|
|
|
|
|
|
|
----
|
|
|
|
SET SERVEROUTPUT ON
|
|
|
|
|
|
|
|
DECLARE
|
|
|
|
i PLS_INTEGER := 42;
|
|
|
|
BEGIN
|
|
|
|
IF i < 0 THEN
|
|
|
|
DBMS_OUTPUT.PUT_LINE('negative!'); -- Compliant
|
|
|
|
ELSE
|
|
|
|
DBMS_OUTPUT.PUT_LINE('positive');
|
|
|
|
END IF;
|
|
|
|
END;
|
|
|
|
/
|
|
|
|
----
|