Kbase P98507: Why does the 'DEFINE TEMP-TABLE' Statement provide for the possibility of multiple 'LABEL' & 'INITIA
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  07/12/2004 |
|
Status: Unverified
GOAL:
Why does the 'DEFINE TEMP-TABLE' Statement provide for the possibility of multiple 'LABEL' entires of 'field-options'?
GOAL:
Why does the 'DEFINE TEMP-TABLE' Statement provide for the possibility of multiple 'INITIAL' entires of 'field-options'?
FIX:
The 'DEFINE TEMP-TABLE' Statement allows for multiple 'LABEL' and 'INITIAL' entires to accommodate multiple EXTENT array fields:
DEFINE TEMP-TABLE ttName
FIELD iField AS INTEGER EXTENT 2 INITIAL [1,2] LABEL "a", "b".
CREATE ttName.
DISPLAY ttName.