rspec/rules/S2517/plsql/rule.adoc

45 lines
761 B
Plaintext
Raw Normal View History

2021-04-28 16:49:39 +02:00
Shared coding conventions allow teams to collaborate efficiently. This rule checks that all cursor names match the provided regular expression.
2021-04-28 16:49:39 +02:00
== Noncompliant Code Example
With the default regular expression, ``++[a-zA-Z]([a-zA-Z0-9_]*[a-zA-Z0-9])?++``:
----
CREATE TABLE employee(
name VARCHAR2(42)
);
DECLARE
CURSOR myCursor_ RETURN employee%ROWTYPE; -- Noncompliant
CURSOR myCursor_ RETURN employee%ROWTYPE IS SELECT * FROM employee; -- Noncompliant
BEGIN
NULL;
END;
/
DROP TABLE employee;
----
2021-04-28 16:49:39 +02:00
== Compliant Solution
----
CREATE TABLE employee(
name VARCHAR2(42)
);
DECLARE
CURSOR myCursor RETURN employee%ROWTYPE;
CURSOR myCursor RETURN employee%ROWTYPE IS SELECT * FROM employee;
BEGIN
NULL;
END;
/
DROP TABLE employee;
----