Skip to main content

SQL WARNING 801-W External Compiler Module message on EXEC SQL INCLUDE SQLCA

  • February 15, 2013
  • 0 replies
  • 0 views

Problem:

When the following warning messages are issued when compiling a SQL application :

801-W External Compiler Module message

ES1000 Use of EXEC SQL INCLUDE SQLCA END-EXEC.

    12     05  SQLCABC         PIC S9(9) COMP-5 VALUE 136.

*1209-I COMP-5 is machine specific format. (future occurrences not indicated)

Resolution:

The warning messages appear when compiling with the WARNINGS"3" compiler directive:

801-W External Compiler Module message

ES1000 Use of EXEC SQL INCLUDE SQLCA END-EXEC.

This warning message is required for ANSI certification.

    12     05  SQLCABC         PIC S9(9) COMP-5 VALUE 136.

*1209-I COMP-5 is machine specific format. (future occurrences not indicated)

This message is due to the SQLCA structure containing COMP-5 data items, and is expected.

Old KB# 6876