RESTORE Statement ---------------------------------------------------------------------------- Action Allows DATA statements to be reread from a specified line. Syntax RESTORE { linelabel | linenumber} Remarks After executing a RESTORE statement without a specified linelabel or linenumber, the next READ statement gets the first item in the first DATA statement in the program. If linelabel or linenumber is specified, the next READ statement gets the first item in the specified DATA statement. If a line is specified, the line label or line number must be in the module-level code. (Note that in the QBX environment, DATA statements are automatically moved to the module-level code.) See Also DATA, READ Example See the SEEK (file I-O) statement programming example, which uses the RESTORE statement.