Consultor Eletrônico



Kbase P115751: Client session crashes compiling the same code multiple times
Autor   Progress Software Corporation - Progress
Acesso   Público
Publicação   10/28/2008
Status: Unverified

SYMPTOM(s):

Client session crashes compiling the same code multiple times

Using COMPILE statement with LISTING option

4GL code compiles ok first time

FACT(s) (Environment):

OpenEdge 10.0B
Windows

CAUSE:

Bug# OE00128554

CAUSE:

The 4GL code contains DELETE FROM sql89 statement

FIX:

Replace DELETE FROM statement with the 4GL equivalent statements.
Example:
DELETE FROM Order WHERE custNum = 1.
Replace with:
FOR EACH Order WHERE custNum = 1:
DELETE Order.
END.