List Library (LL)

Command title

List Library Search Order

Description

This command copies the current tableBASE library search list into the LIB-LIST parameter.

COBOL syntax

MOVE 'LL'                   TO xxxx-COMMAND.
CALL 'TBLBASE' USING        TB-PARM
                            xxxx-COMMAND-AREA
                            LIB-LIST.

C syntax

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

Parameters

LIB-LIST

Explanation

This capability is for use by routines that must modify the library search order to their own libraries. The LL command lets a routine record the current library search order before the routine modifies the library search list for its own use; the search order can then be restored, using ML, by the routine before it returns to its caller.

Return value

None

Notes

None

Exceptions

None

See also

None