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

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

The newest version!

Always specify the date format in TO_DATE calls.

Noncompliant Code Example

begin
  var := to_date('2015-01-01');
end;

Compliant Solution

begin
  var := to_date('2015-01-01', 'YYYY-MM-DD');
end;




© 2015 - 2024 Weber Informatics LLC | Privacy Policy