Import_GetNextRecord()

Examples


The Import_GetNextRecord() advances to the next record, or “line” in the text file. A record is made up of all the fields between carriage returns in a text file.

Syntax

Import_GetNextRecord(file_ID)

Parameters

file_ID – The unique file ID assigned by Import_OpenFile().

Return value

A boolean representing an end of file (EOF) error. If false, there are additional records in the file. If true, processing reached the end of the file.

Comments

This function moves to the next record in a text file. The following illustration shows how the Import_GetNextRecord() function interprets a comma-delimited text file:

[spacer]


Documentation Feedback