PHP Dokumentation: Pdostatement nextrowset
12. Januar 2010 von werner
PDOStatement->nextRowset
(PHP 5 >= 5.1.0, PECL pdo >= 0.2.0)
PDOStatement->nextRowset — Advances to the next rowset in a multi-rowset statement handle
Beschreibung
Some database servers support stored procedures that return more than one rowset (also known as a result set). PDOStatement::nextRowset() enables you to access the second and subsequent rowsets associated with a PDOStatement object. Each rowset can have a different set of columns from the preceding rowset.
Rückgabewerte
Gibt bei Erfolg TRUE zurück. Im Fehlerfall wird FALSE zurückgegeben.
Beispiele
Beispiel #1 Fetching multiple rowsets returned from a stored procedure
The following example shows how to call a stored procedure, MULTIPLE_ROWSETS, that returns three rowsets. We use a do / while loop to loop over the PDOStatement::nextRowset() method, which returns false and terminates the loop when no more rowsets can be returned.
<?php
$sql = 'CALL multiple_rowsets()';
$stmt = $conn->query($sql);
$i = 1;
do {
$rowset = $stmt->fetch(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";
}
?>Das oben gezeigte Beispiel erzeugt folgendeAusgabe:
Result set 1:apple redbanana yellowResult set 2:orange orange 150banana yellow 175Result set 3:lime greenapple redbanana yellow
Siehe auch
- PDOStatement::columnCount() – Returns the number of columns in the result set
- PDOStatement::execute() – Executes a prepared statement
- PDOStatement::getColumnMeta() – Returns metadata for a column in a result set
- PDO::query() – Executes an SQL statement, returning a result set as a PDOStatement object