MDL-11432 rs->EOF wrapper function

This commit is contained in:
skodak
2007-10-10 09:21:13 +00:00
parent d45181e38d
commit a7709f02b6
+9
View File
@@ -813,6 +813,15 @@ function rs_fetch_next_record(&$rs) {
return $rec;
}
/**
* Returns true if no more records found
* @param ADORecordSet the recordset
* @return bool
*/
function rs_EOF($rs) {
return $rs->EOF;
}
/**
* This function closes the recordset, freeing all the memory and associated resources.
* Note that, once closed, the recordset must not be used anymore along the request.