MySQL error #2014 - Commands out of sync; you can#39;t run this command now(MySQL 错误 #2014 - 命令不同步;你现在不能运行这个命令)
问题描述
我正在使用 MySQL,我正在定义一个这样的存储过程:
I am using MySQL and I am defining a stored procedure like this:
delimiter ;;
Create procedure sp_test()
select * from name_table;
end
当我尝试执行该过程时出现此错误:
When I try to execute that procedure I get this error:
#2014 - Commands out of sync; you can't run this command now
这是什么意思,我做错了什么?
What does this mean and what am I doing wrong?
推荐答案
来自 手册
C.5.2.14.命令不同步
如果 命令不同步;你现在无法在您的客户端代码中运行此命令
,您正在调用客户端功能顺序错误.
C.5.2.14. Commands out of sync
If you getCommands out of sync; you can't run this command now
in your client code, you are calling client functions in the wrong order.
这可能发生,例如,如果您使用 mysql_use_result()
并且尝试在调用 mysql_free_result()
之前执行新查询.如果您尝试执行两个返回数据的查询,也会发生这种情况无需调用 mysql_use_result()
或 mysql_store_result()
.
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.
这篇文章(取自这里)
我已经解决了这个问题.我使用 MySQL-Fron 代替 MySQL Query浏览器.一切正常.
I've solved that problem. I use MySQL-Fron instead MySQL Query browser. And everything works fine.
让我认为这不是服务器或数据库问题,而是您使用的工具的问题.
makes me think that it's not a server or database problem but a problem in the tool you're using.
这篇关于MySQL 错误 #2014 - 命令不同步;你现在不能运行这个命令的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:MySQL 错误 #2014 - 命令不同步;你现在不能运行这个命令
基础教程推荐
- 在 VB.NET 中更新 SQL Server DateTime 列 2021-01-01
- 将数据从 MS SQL 迁移到 PostgreSQL? 2022-01-01
- 无法在 ubuntu 中启动 mysql 服务器 2021-01-01
- SQL Server:只有 GROUP BY 中的最后一个条目 2021-01-01
- ERROR 2006 (HY000): MySQL 服务器已经消失 2021-01-01
- Sql Server 字符串到日期的转换 2021-01-01
- SQL Server 中单行 MERGE/upsert 的语法 2021-01-01
- 使用pyodbc“不安全"的Python多处理和数据库访问? 2022-01-01
- SQL Server 2016更改对象所有者 2022-01-01
- 如何在 SQL Server 的嵌套过程中处理事务? 2021-01-01