Advances
the record cursor by one record. Returns a boolean value
indicating success or failure. Failure occurs if the cursor
moved past the last record.
Example
var rs = Resultset("AddressBook", "*", "*");
rs.next();
//The cursor now points to the first record, provided
//there were records that matched the filters.