rules repository

G-2180

🆓
Warning

Never use quoted identifiers.

Reason

Quoted identifiers make your code hard to read and maintain.

Example

Non-Compliant Example

declare
   "sal+comm"     integer;
   "my constant"  constant integer := 1;
   "my exception" exception;
begin
   "sal+comm" := "my constant";
   do_something("sal+comm");
exception
   when "my exception" then
      null;
end;
/
Issues
LineColumnMessage
24Quoted identifier "sal+comm".
34Quoted identifier "my constant".
44Quoted identifier "my exception".

Compliant Solution - ★★★★★

declare
   l_sal_comm     integer;
   co_my_constant constant integer := 1;
   e_my_exception exception;
begin
   l_sal_comm := co_my_constant;
   do_something(l_sal_comm);
exception
   when e_my_exception then
      null;
end;
/

References