Message Oracle PCC-00118 - Use of host variable initialization not supported by ANSI SQL

ERRORUse of host variable initialization not supported by ANSI SQL
CAUSEAn Oracle extension to the ANSI/ISO SQL standard was used. Specifically, a host variable was initialized in its declaration, as shown in the following Pro*C example: EXEC SQL BEGIN DECLARE SECTION; int dept_number = 20; -- not ANSI/ISO-compliant EXEC SQL END DECLARE SECTION; This informational message is issued by the FIPS Flagger when FIPS=YES.
ACTIONNo action required. However, for ANSI/ISO compliance, do not initialize host variables in their declarations.