org.sonar.l10n.plsqlopen.rules.plsql.VariableName.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!
This rule checks that all variable names match a provided regular expression.
Example
Considering the default expression:
DECLARE
dept_name dept.name%type; -- Compliant
dept_name_ dept.name%type; -- Noncompliant
BEGIN
...
END;