Recordset.eof — determine if the cursor is after the last record
void Recordset.eof
( |
) ; |
Example 66. Recordset.eof Example
// Loop through the records of a recordset while(!rs.eof()) { // Do something with the current record rs.next(); }
Data sources and database access in RSP is explained in the section called “Accessing Databases”