>  기사  >  백엔드 개발  >  PHP/mysqli 및 PDO를 사용하여 MySQL의 저장 프로시저에서 여러 결과 세트를 검색하는 방법은 무엇입니까?

PHP/mysqli 및 PDO를 사용하여 MySQL의 저장 프로시저에서 여러 결과 세트를 검색하는 방법은 무엇입니까?

DDD
DDD원래의
2024-10-30 19:30:02732검색

How to Retrieve Multiple Result Sets from Stored Procedures in MySQL with PHP/mysqli and PDO?

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

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.