PUSH DATASESSION

From Lianjapedia
Revision as of 11:25, 22 June 2016 by Yvonne.milne (Talk | contribs)

Jump to: navigation, search

Purpose

Save the current data session

Syntax

PUSH DATASESSION

See Also

POP DATASESSION, RESTORE DATASESSION, RESTORE RECORDVIEW, SAVE DATASESSION, SAVE RECORDVIEW

Description

The PUSH DATASESSION command is used to save the current data session. It can then be restored using the POP DATASESSION command. Data sessions can be pushed and popped up to 256 levels deep they operate on a last in, first out basis. All tables are closed by the PUSH DATASESSION command.

The SAVE DATASESSION and RESTORE DATASESSION commands can also be used to save and restore the current data session, optionally saving and restoring from a memory variable.

Example

// save the current data session
push datasession
// Carry out other operations with different data
// then save this second data session
push datasession
// Carry out other operations with different data
// then restore the second data session
pop datasession
// Carry out other operations with different data
// then restore the original data session
pop datasession