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

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

The newest version!

Specify the columns in an INSERT statement to guarantee that the code won't stop working when a new column is added.

Noncompliant Code Example

insert into tab values (1);

Compliant Solution

insert into tab (col) values (1);




© 2015 - 2025 Weber Informatics LLC | Privacy Policy