BUG: ESQL: Level 49 Group Items Not Work on INSERT StatementsLast reviewed: May 5, 1997Article ID: Q105325 |
The information in this article applies to:
SYMPTOMSIn Embedded SQL (ESQL) for COBOL, variable length character strings can be declared as group items containing only two elementary items, both of which must have level number 49, as follows:
01 test. 49 test-len pic 9(4) comp-5 49 test-data pic x(100).The host variable group test can be used as a single variable with test-len holding the length of the varchar string, and test-data has the actual string. This works fine with SELECT statements, but does not work with INSERT or update statements. When trying to use the group variable with insert, for example:
insert t values (:test)where t is a table with a single column of type varchar, the value inserted in the varchar column will be ASCII character of the value in test-len, not the actual character data in test-data.
CAUSESQL Server Embedded SQL for COBOL incorrectly handles these special group items with INSERT or update statements.
WORKAROUNDUse elementary items instead of the group items when working with INSERT or update statements in Embedded SQL applications.
STATUSMicrosoft has confirmed this to be a problem in Embedded SQL version 4.21 for COBOL. We are researching this problem and will post new information here in the Microsoft Knowledge Base as it becomes available.
|
Additional query words:
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |