标题中提到的错误文档说明
If you get Commands out of sync; you can’t run this command now in
your client code,you are calling client functions in the wrong order.This can happen,for example,if you are using mysql_use_result() and
try to execute a new query before you have called MysqL_free_result().
It can also happen if you try to execute two queries that return data
without calling MysqL_use_result() or MysqL_store_result() in between.
从这里:http://dev.mysql.com/doc/refman/5.0/en/commands-out-of-sync.html
但是在First Query中我没有从MysqL数据库中获取任何数据,我只是插入.在第二个查询中,我从数据库中获取数据.
这是我的代码
$connection = MysqLi_connect("localhost","username","password","tbl_msgs"); if(MysqLi_connect_errno($connection)) { die("Failed to connect to MysqL: " . MysqLi_connect_error()); } $query = "INSERT INTO users (total_comments,total_views) VALUES ({$total_comments},{$total_views});"; $query .= "INSERT INTO msgs (notifications) VALUES ({$notifications})"; MysqLi_multi_query($connection,$query);
$select_query = "SELECT * FROM msgs WHERE msg_id = {$msg_id}"; $result_set = MysqLi_query($connection,$select_query); if(!$result_set) { die(MysqLi_error($connection)); }
这里它使错误命令不同步;你现在不能运行这个命令.我无法理解这种情况
查询中有待处理的结果集:
原文链接:https://www.f2er.com/php/132518.htmlMysqLi_multi_query($connection,$query);
您需要先使用/存储结果,然后才能继续下一个查询:
由于您看起来并不真正关心第一个结果集,请在多个查询之后执行此操作.
do { $result = MysqLi_store_result($connection); MysqLi_free_result($result); }while(MysqLi_next_result());
MysqLi_close($connection); $connection = MysqLi_connect("localhost","tbl_msgs");
这一切都取决于您的要求.