_________________________________________________________
Release Notes for
HCL Informix SQL 7.51.FC4
March 2025
________________________________________________________
Overview of Release Notes for HCL Informix 4GL 7.51 FC4
____________________________________________________________
These release notes contain additional information not found in the
product manuals that are included with the product. You should
review these notes for critical information.
For 4GL 7.51.FC4, documentation notes refer to the DOCNOTES_7.51.txt
or DOCNOTES_7.51.html files in the product. The entire 4GL 7.51
documentation set is located at:
https://help.hcl-software.com/hclinformix/15.0.0/1infocenter/4gl/4gl_ug.html
For Machine Specific settings needed with the 7.51 release refer to
the MACHINENOTES.751 file.
Products included in 7.51.FC4
___________________________________
The products released are:
HCL Informix 4GL
HCL Informix 4GL/Runtime Facility
HCL Informix 4GL/Rapid Development System
HCL Informix 4GL/Rapid Development System Runtime Facility
HCL Informix 4GL Interactive Debugger
HCL Informix SQL
HCL Informix SQL/Runtime Facility
Language Supplements containing the localization requirements are not
part of the product-suite.
The 4GL product suite contains 4GL and SQL product-specific message
files. It does not contain the full complement of SDK product-specific
message files. To access all message files, you must install the
International Language Supplement (ILS).
New features in 7.51.FC4
______________________________
For more information about this feature, see
https://help.hcl-software.com/hclinformix/15.0.0/4gl/4gl_new_features.html
Known issues and workarounds
____________________________________
A. Installing 4GL and CSDK into same folder can result in issues with
4GL at runtime, check the machine notes for platform specific
issues and CSDK versions.
Workaround :
It is highly recommended that 4GL and CSDK/IDS be installed into
separate folders.
B. Statements inside SQL blocks duplicates the first character of a string that
starts with an hypen.
For Example :
MAIN
SQL
UPDATE tab
SET col1= col1* -2 WHERE key="key"
END SQL
Both 4GL pcode compiler and C compiler generate wrong code for the above SQL statement,
for given example above generated 4ec files will have following statement
update tab set col1 = col1 * - 22 WHERE key = "key"
Correct translation should be 'col1 * - 2' but generated code is 'col1 * - 22', this
happens for all SQL that has 'hypen' inside the SQL..END SQL block.
Workaround :
If you have any SQL with hyphen then do not put it inside the SQL... END SQL block.