使用PHP/mysqli 處理MySQL 中預存程序的多個結果集
從PHP/mysqli 中的預存程序擷取多個結果集可以是透過使用mysqli_stmt_next_result() 函數來實作。以下範例示範如何使用此函數前進到第二個結果集:
<code class="php">$stmt = mysqli_prepare($db, 'CALL multiples(?, ?)'); mysqli_stmt_bind_param($stmt, 'ii', $param1, $param2); mysqli_stmt_execute($stmt); // Fetch and process the first result set $result1 = mysqli_stmt_get_result($stmt); while ($row1 = mysqli_fetch_assoc($result1)) { // Process row1 } // Advance to the second result set mysqli_stmt_next_result($stmt); if (mysqli_stmt_error($stmt)) { die('Failed to advance to the second result set: ' . mysqli_stmt_error($stmt)); } // Fetch and process the second result set $result2 = mysqli_stmt_get_result($stmt); while ($row2 = mysqli_fetch_assoc($result2)) { // Process row2 }</code>
PDO 解決方案
使用PDO,程式碼將如下所示:
<code class="php">$stmt = $db->prepare('CALL multiples(:param1, :param2)'); $stmt->execute([':param1' => $param1, ':param2' => $param2]); // Fetch and process the first result set while ($row1 = $stmt->fetch()) { // Process row1 } // Advance to the second result set $stmt->nextRowset(); // Fetch and process the second result set while ($row2 = $stmt->fetch()) { // Process row2 }</code>
注意:
請務必記住,並非所有資料庫伺服器都支援儲存過程的多個結果集。請務必參閱資料庫伺服器的相容性文件。
以上是如何使用 PHP/mysqli 和 PDO 從 MySQL 中的預存程序中檢索多個結果集?的詳細內容。更多資訊請關注PHP中文網其他相關文章!