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

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

The newest version!

To improve the readability, avoid using empty strings to represent NULL.

Noncompliant Code Example

var := '';

Compliant Solution

var := null;




© 2015 - 2024 Weber Informatics LLC | Privacy Policy