Consultor Eletrônico



Kbase P39516: How to get the field names of a database table?
Autor   Progress Software Corporation - Progress
Acesso   Público
Publicação   17/02/2004
Status: Unverified

GOAL:

How to get a list of field names from a database table.

GOAL:

How to get the column names of a particular table.

FIX:

The code example uses the Customer table of the Sports database.

FOR EACH _file WHERE _file-name = "customer", EACH _field OF _file.
DISPLAY _field._field-name.
END.