Documentation Home
MySQL 8.3 Reference Manual
Related Documentation Download this Manual
PDF (US Ltr) - 40.8Mb
PDF (A4) - 40.9Mb
Man Pages (TGZ) - 294.0Kb
Man Pages (Zip) - 409.0Kb
Info (Gzip) - 4.0Mb
Info (Zip) - 4.0Mb
Excerpts from this Manual

B.3.2.12 命令不同步

如果您在客户端代码中收到 Commands out of sync; you can't run this command now,则表示您正在以错误的顺序调用客户端函数。

例如,如果您使用 mysql_use_result() 并尝试在调用 mysql_free_result() 之前执行新查询时,这种情况可能会发生。同样,如果您尝试执行两个返回数据的查询,而没有在中间调用 mysql_use_result()mysql_store_result(),也可能会发生这种情况。