print

The print command displays the current value of the specified expression.

Syntax

print expression
  1. expression is a combination of variables, constants and operators.

Usage

The print command allows you to examine the data in your program.

It evaluates and prints the value of the specified expression from your program, in a format appropriate to its data type.

p is an alias for the print command.

Example

(fgldb) print cust_rec.cust_id
$1 = 87324
(fgldb)