如何使用bind_result与get_result的示例

我想看一个如何使用bind_result和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 = ?'; 

$query1使用bind_result()示例1

 $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(); 

$query2使用get_result()例子2

 $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()

缺点:

  • 必须解决数组variables$row[]
  • 不够整齐
  • 需要MySQL本地驱动程序( mysqlnd )

您可以在相应的手册页上find示例。

虽然赞成和反对很简单:

  • get_result是处理结果的唯一理智的方法
  • 但它并不总是可用的,你的代码必须有一个使用丑陋的bind_result回退。

无论如何,如果你的想法是在应用程序代码中使用任何一个函数 – 这个想法是错误的。 然而,只要你用某种方法封装了它们以从查询中返回数据,那么使用哪一个并不重要,除了实现bind_result需要十倍以上的代码之外。

主要区别我注意到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; } 

我想示例2只能这样工作,因为store_result和get_result都从表中获取信息。

所以删除

 /* 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(); 

get_result()现在只能通过安装MySQL本地驱动程序(mysqlnd)在PHP中使用。 在某些环境下,安装mysqlnd可能是不可能或不可取的。

尽pipe如此,仍然可以使用mysqli来执行select *查询,并获得结果的字段名称 – 尽pipe比使用get_result()稍微复杂一些,并且涉及使用php的call_user_func_array()函数。 请参阅如何在php中使用bind_result()而不是get_result()来执行简单的“select *”查询,并将结果(使用列名称)输出到HTML表格。