Reads the next row of data from the step above and fills the variables that represent the incoming step's data with the new values. It returns false if there are no more rows to read.
Category: | Data Input |
Returned data type: | Integer |
Note: | The returned value is a Boolean value representing whether there are values in the incoming step's data, true = there are still rows in parent node; false = no more rows to read. |
// Declare a string to contain the "old" or "previous" value string oldname // Set the value of OLDNAME to whatever is in NAME oldname=name // Name has the value "John', oldname also contains "John" // Use the READROW function to read in the next record readrow() // OLDNAME is still "John", but NAME is now "Paul"