![JAR search and dependency download from the Maven repository](/logo.png)
org.sonar.l10n.plsqlopen.rules.plsql.ExplicitInParameter.html Maven / Gradle / Ivy
The newest version!
If not set, the parameter mode is IN. However, defining it explicitly does make the code easier to read.
CREATE OR REPLACE PROCEDURE myproc(value VARCHAR2) IS -- violation
BEGIN
NULL;
END;
CREATE OR REPLACE PROCEDURE myproc(value IN VARCHAR2) IS -- correct, the parameter mode is defined
BEGIN
NULL;
END;
© 2015 - 2025 Weber Informatics LLC | Privacy Policy