Synopsis:

       adoRSetIsEOF(SetHandle)

Arguments:

       handle - The recordset handle.


Description:   This function is a utility function that returns the value of the EOF property of a recordset object.          This value can also be obtained by calling the adoRSetParmGet() function passing the P_RS_EOF constant to retrieve the value.   


The EOF property will be set to true if the record pointer of the recordset is positioned after the end of the data,  and the function will return "1" (true);  


If a recordset does not contain any records then both EOF and BOF will be true.


Note: ADO uses the value -1 for true, and so if adoRSetParmGet() is used then it will be -1 that is returned if the condition is true, whereas this function will return 1 instead.


If the record pointer is not positioned after the end of the data the function will return "0".


Returns:   Returns 1 if the record  pointer is positioned before the beginning of the data, otherwise returns 0 or a negative error code.   If ADOERR_COMERR is returned, then the underlying ADO error can be obtained by calling adoLastError()