Empty the Table (MT)

Command title

Empty the Table

Description

This command removes all of the rows from the copy of the table that is open in the TSR.

COBOL syntax

MOVE 'MT'                   TO xxxx-COMMAND.
CALL 'TBLBASE' USING        TB-PARM
                            xxxx-COMMAND-AREA.

C syntax

memcpy( tbCommArea.tbCommand, "MT", 2 );
TBLBASE( &tbParm, &tbCommArea );

Parameters

None

Explanation

None

Return value

None

Notes

The table remains open, with free space allocated, ready to be re-populated with new data.

Exceptions

None

See also

None