All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.sonar.l10n.plsqlopen.rules.plsql.VariableName.html Maven / Gradle / Ivy

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;




© 2015 - 2024 Weber Informatics LLC | Privacy Policy