rspec/rules/S1282/cobol/rule.adoc

59 lines
878 B
Plaintext
Raw Permalink Normal View History

== Why is this an issue?
Having several levels of nested SQL SELECT statements makes the code difficult to read and should therefore be avoided.
=== Noncompliant code example
With an allowed nesting level of 2:
2022-02-04 17:28:24 +01:00
[source,cobol]
----
*> Non-Compliant
EXEC SQL
SELECT * FROM my_table1 WHERE
my_column1 IN
(SELECT my_column2 FROM my_table2
WHERE my_column3 IN
(SELECT my_column4 FROM my_table3))
END-EXEC.
----
=== Compliant solution
2022-02-04 17:28:24 +01:00
[source,cobol]
----
EXEC SQL
SELECT * FROM my_table
END-EXEC.
----
ifdef::env-github,rspecator-view[]
'''
== Implementation Specification
(visible only on this page)
=== Parameters
.maximumNestedLevelThreshold
****
----
3
----
The number of authorized nested "SELECT" statements
****
'''
== Comments And Links
(visible only on this page)
=== is related to: S2524
endif::env-github,rspecator-view[]