ptype

The ptype command prints the data type or structure of a variable.

Syntax

ptype variable-name
  1. variable-name is the name of the variable.

Example

(fgldb) ptype cust_rec 
type = RECORD
    cust_num INTEGER,
    cust_name VARCHAR(10),
    cust_address VARCHAR(200)
END RECORD