[php] bind_result와 get_result를 사용하는 방법의 예

using bind_resultvs. 를 호출하는 방법 get_result과 하나를 다른 것보다 사용하는 목적이 무엇인지에 대한 예를보고 싶습니다 .

또한 각각을 사용하는 장단점.

둘 중 하나를 사용할 때의 한계는 무엇이며 차이점이 있습니다.



답변

저에게 결정적인 요소는 *.

bind_result()이것을 사용하는 것이 더 좋습니다.

// Use bind_result() with fetch()
$query1 = 'SELECT id, first_name, last_name, username FROM table WHERE id = ?';

get_result()이것을 사용하는 것이 더 좋습니다.

// Use get_result() with fetch_assoc()
$query2 = 'SELECT * FROM table WHERE id = ?';

실시 예 1에 대한 $query1사용bind_result()

$query1 = 'SELECT id, first_name, last_name, username FROM table WHERE id = ?';
$id = 5;

if($stmt = $mysqli->prepare($query)){
   /*
        Binds variables to prepared statement

        i    corresponding variable has type integer
        d    corresponding variable has type double
        s    corresponding variable has type string
        b    corresponding variable is a blob and will be sent in packets
   */
   $stmt->bind_param('i',$id);

   /* execute query */
   $stmt->execute();

   /* Store the result (to get properties) */
   $stmt->store_result();

   /* Get the number of rows */
   $num_of_rows = $stmt->num_rows;

   /* Bind the result to variables */
   $stmt->bind_result($id, $first_name, $last_name, $username);

   while ($stmt->fetch()) {
        echo 'ID: '.$id.'<br>';
        echo 'First Name: '.$first_name.'<br>';
        echo 'Last Name: '.$last_name.'<br>';
        echo 'Username: '.$username.'<br><br>';
   }

   /* free results */
   $stmt->free_result();

   /* close statement */
   $stmt->close();
}

/* close connection */
$mysqli->close();

예 2 $query2사용get_result()

$query2 = 'SELECT * FROM table WHERE id = ?';
$id = 5;

if($stmt = $mysqli->prepare($query)){
   /*
        Binds variables to prepared statement

        i    corresponding variable has type integer
        d    corresponding variable has type double
        s    corresponding variable has type string
        b    corresponding variable is a blob and will be sent in packets
   */
   $stmt->bind_param('i',$id);

   /* execute query */
   $stmt->execute();

   /* Get the result */
   $result = $stmt->get_result();

   /* Get the number of rows */
   $num_of_rows = $result->num_rows;



   while ($row = $result->fetch_assoc()) {
        echo 'ID: '.$row['id'].'<br>';
        echo 'First Name: '.$row['first_name'].'<br>';
        echo 'Last Name: '.$row['last_name'].'<br>';
        echo 'Username: '.$row['username'].'<br><br>';
   }

   /* free results */
   $stmt->free_result();

   /* close statement */
   $stmt->close();
}

/* close connection */
$mysqli->close();

당신이 볼 수 있듯이 당신은 사용할 수 없습니다 bind_result와 함께 *. 그러나 get_result둘 다 작동하지만 bind_result더 간단하고 $row['name'].


bind_result ()

장점 :

  • 더 간단
  • 엉망이 될 필요가 없습니다 $row['name']
  • 용도 fetch()

단점 :

  • 다음을 사용하는 SQL 쿼리에서는 작동하지 않습니다. *

get_result ()

장점 :

  • 모든 SQL 문에서 작동
  • 용도 fetch_assoc()

단점 :

  • 배열 변수를 엉망으로 만들어야합니다. $row[]
  • 깔끔하지 않음
  • MySQL 기본 드라이버 ( mysqlnd ) 필요


답변

각 매뉴얼 페이지에서 예제를 찾을 수 있습니다.

장점과 단점은 매우 간단합니다.

  • get_result는 결과를 처리하는 유일한 방법입니다.
  • 그러나 항상 사용할 수있는 것은 아니며 코드는 추악한 bind_result를 사용하여 대체해야합니다.

어쨌든, 당신의 아이디어가 응용 프로그램 코드에서 두 기능 중 하나를 바로 사용하는 것이라면 이것은 잘못된 생각입니다. 그러나 쿼리에서 데이터를 반환하기 위해 일부 메서드에 캡슐화되어있는 한 bind_result를 구현하려면 10 배 더 많은 코드가 필요하다는 사실을 제외하고 어떤 것을 사용할 것인지는 중요하지 않습니다.


답변

내가 발견 한 가장 큰 차이점은 즉 bind_result()당신에게 오류를 제공 2014하면 코드 중첩하려고 할 때, 다른 $ stmt에 내부 $ stmt에 ,되고 있음을 페치 (없이 mysqli::store_result()) :

준비 실패 : (2014) 명령이 동기화되지 않았습니다. 지금이 명령을 실행할 수 없습니다.

예:

  • 메인 코드에서 사용되는 기능.

    function GetUserName($id)
    {
        global $conn;
    
        $sql = "SELECT name FROM users WHERE id = ?";
    
        if ($stmt = $conn->prepare($sql)) {
    
            $stmt->bind_param('i', $id);
            $stmt->execute();
            $stmt->bind_result($name);
    
            while ($stmt->fetch()) {
                return $name;
            }
            $stmt->close();
        } else {
            echo "Prepare failed: (" . $conn->errno . ") " . $conn->error;
        }
    }
    
  • 메인 코드.

    $sql = "SELECT from_id, to_id, content
            FROM `direct_message`
            WHERE `to_id` = ?";
    if ($stmt = $conn->prepare($sql)) {
    
        $stmt->bind_param('i', $myID);
    
        /* execute statement */
        $stmt->execute();
    
        /* bind result variables */
        $stmt->bind_result($from, $to, $text);
    
        /* fetch values */
        while ($stmt->fetch()) {
            echo "<li>";
                echo "<p>Message from: ".GetUserName($from)."</p>";
                echo "<p>Message content: ".$text."</p>";
            echo "</li>";
        }
    
        /* close statement */
        $stmt->close();
    } else {
        echo "Prepare failed: (" . $conn->errno . ") " . $conn->error;
    }
    


답변

get_result ()는 이제 MySQL 네이티브 드라이버 (mysqlnd)를 설치하여 PHP에서만 사용할 수 있습니다. 일부 환경에서는 mysqlnd를 설치하는 것이 가능하지 않거나 바람직하지 않을 수 있습니다.

그럼에도 불구하고 여전히 mysqli를 사용하여 ‘select *’쿼리를 수행하고 필드 이름으로 결과를 얻을 수 있습니다.하지만 get_result ()를 사용하는 것보다 약간 더 복잡하고 php의 call_user_func_array () 함수를 사용하는 것이 포함됩니다. 간단한 ‘select *’쿼리를 수행하고 결과 (열 이름과 함께)를 HTML 테이블에 출력하는 PHP에서 get_result () 대신 bind_result ()를 사용하는 방법의 예제를 참조하십시오 .


답변

store_result와 get_result는 모두 테이블에서 정보를 가져 오기 때문에 예제 2는 이와 같이 작동한다고 생각합니다.

그래서 제거

/* Store the result (to get properties) */
$stmt->store_result();

그리고 순서를 조금 변경하십시오. 이것이 최종 결과입니다.

$query2 = 'SELECT * FROM table WHERE id = ?';
$id = 5;

if($stmt = $mysqli->prepare($query)){
 /*
    Binds variables to prepared statement

    i    corresponding variable has type integer
    d    corresponding variable has type double
    s    corresponding variable has type string
    b    corresponding variable is a blob and will be sent in packets
 */
$stmt->bind_param('i',$id);

/* execute query */
$stmt->execute();

/* Get the result */
$result = $stmt->get_result();

/* Get the number of rows */
$num_of_rows = $result->num_rows;

while ($row = $result->fetch_assoc()) {
    echo 'ID: '.$row['id'].'<br>';
    echo 'First Name: '.$row['first_name'].'<br>';
    echo 'Last Name: '.$row['last_name'].'<br>';
    echo 'Username: '.$row['username'].'<br><br>';
}

/* free results */
$stmt->free_result();


답변