aejaz
aejaz

Reputation: 105

Sonarqube for compilation errors in PLSQL script

is there a rule available in Sonarqube PlSql plugin, for finding compilation errors in the SQL script file that is being analyzed ?

example: select * table_name; -- from keyword misssing. or insert into table_name ('something','inserted','data'); -- values keyword missing.

Upvotes: 0

Views: 73

Answers (1)

G. Ann - SonarSource Team
G. Ann - SonarSource Team

Reputation: 22804

SonarQube Code Analyzers assume they're being passed compilable (or already-compiled) code. So no, no rule will be available for this.

Upvotes: 1

Related Questions