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

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

The newest version!

If your initialization fails you will not be able to handle the error in your exceptions block.

Noncompliant Code Example

DECLARE
  employee_name emp.name%TYPE := get_employee_name(id => 5);
BEGIN
  ...
END;

Compliant Solution

DECLARE
  employee_name emp.name%TYPE;
BEGIN
  employee_name := get_employee_name(id => 5);
  ...
END;




© 2015 - 2024 Weber Informatics LLC | Privacy Policy