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 중국어 웹사이트의 기타 관련 기사를 참조하세요!