ADOdb Library for PHP Manual
Prev NextRecordSet Next

NextRecordSet()

For databases that allow multiple recordsets to be returned in one query, this function allows you to switch to the next recordset. Currently only supported by mssql driver.

    $rs = $db->Execute('execute return_multiple_rs');
    
$arr1 = $rs->GetArray();
    
$rs->NextRecordSet();
    
$arr2 = $rs->GetArray();


Prev Home Next
PO_RecordCount Up FieldCount

Sponsored by phpLens