Easy Tutorial
❮ Func Filter List Func Ftp Ssl Connect ❯

PDOStatement::nextRowset

PHP PDO Reference Manual

PDOStatement::nextRowset — Advances to the next rowset in a multi-rowset statement handle (PHP 5 >= 5.1.0, PECL pdo >= 0.2.0)


Description

Syntax

bool PDOStatement::nextRowset ( void )

Some database services support stored procedures that return more than one rowset (also known as result sets).

PDOStatement::nextRowset() allows you to access the second and subsequent rowsets associated with a PDOStatement object. Each rowset can have a different set of columns.


Return Value

Returns TRUE on success, or FALSE on failure.


Examples

Retrieving Multiple Rowsets Returned by a Stored Procedure

The following example shows how to call a stored procedure, MULTIPLE_ROWSETS, that returns three rowsets. A do/while loop is used to repeatedly call the PDOStatement::nextRowset() method until it returns false, indicating no more rowsets.

<?php
$sql = 'CALL multiple_rowsets()';
$stmt = $conn->query($sql);
$i = 1;
do {
    $rowset = $stmt->fetchAll(PDO::FETCH_NUM);
    if ($rowset) {
        printResultSet($rowset, $i);
    }
    $i++;
} while ($stmt->nextRowset());

function printResultSet(&$rowset, $i) {
    print "Result set $i:\n";
    foreach ($rowset as $row) {
        foreach ($row as $col) {
            print $col . "\t";
        }
        print "\n";
    }
    print "\n";
}
?>

Output of the above example:

Result set 1:
apple    red
banana   yellow

Result set 2:
orange   orange    150
banana   yellow    175

Result set 3:
lime     green
apple    red
banana   yellow

PHP PDO Reference Manual

❮ Func Filter List Func Ftp Ssl Connect ❯