$ connection-> next_result()模拟SafeMySQL

时间:2013-06-02 03:51:24

标签: php mysql

当MySQL存储过程返回结果集时,您可能会收到错误“命令不同步”。 使用mysqli连接到DB时,可以使用以下代码修复此错误:

<?php
  // Assuming $connection is your MySQLI object
  while($connection->next_result()) $connection->store_result();
?>

如何使用SafeMySQL类连接到DB时修复此错误?

1 个答案:

答案 0 :(得分:0)

记得关闭结果集

$result->close();
 $connection->next_result();