Keyword should be avoided as a Name

Using regular keywords as name can be confusing and should be avoided.

Violating this rule will affect the maintainability of the code.The severity is major which means that it should be corrected.

Example of Incorrect Code:

Regular keyword Delete is used as a function name.

PROCEDURE Delete (
        company_ IN VARCHAR2,
        authorize_id_ IN VARCHAR2 )  
...

Alternative to Delete could for example be Remove.

PROCEDURE Remove (
        company_ IN VARCHAR2,
        authorize_id_ IN VARCHAR2 )  
...

Appendix 1: SQL keywords

Appendix 2: PL/SQL reserved words


This page is generated from IFS Developer Studio at 2021-08-13 08:40.