SQLNext() function
- Last UpdatedJun 17, 2024
- 1 minute read
The SQLNext() function selects the next record in sequence of the Results Table created by the last SQLSelect() function. A SQLSelect() function must be processed before running the SQLNext() function in a script.
Category
SQL
Syntax
[ResultCode=]SQLNext(ConnectionID);
Argument
ConnectionID
Name of a memory integer tag that holds the number (ID) assigned by the SQLConnect() function to each database connection.
Example
ResultCode=SQLNext(ConnectionID);
See Also
SQLConnect(), SQLSelect()