Consultor Eletrônico



Kbase P23394: What contributes to the e-code size of a 4GL procedure?
Autor   Progress Software Corporation - Progress
Acesso   Público
Publicação   15/04/2003
Status: Unverified

GOAL:

What contributes to the e-code size of a 4GL procedure?

FIX:

All expressions contribute to the e-code size growth. Every reference to a field, program variable or any combination thereof also contributes to this size.

Examples:

1. The 4GL statement:

DISPLAY a b c d.
Generates 4 expressions: 1 for each field reference.

2. The 4GL statement:

DISPLAY (a + b) * c.

Generates 5 expressions: 3 for a, b and c, 1 for the plus and 1 for the multiply.