在 MySQL 中构建 ADO.NET 数据实体时出现未知表
我无法使用 Visual Studio 和 ADO.NET 数据实体生成 MySQL 数据模型,因为出现以下错误:
执行命令定义时发生错误。有关详细信息,请参阅内部异常。 information_schema 中未知的表“参数”
我下载了 .NET Connector 6.3.6。
如何解决这个问题?
I cannot generate a MySQL data model using Visual Studio with ADO.NET data entity because I get this error:
An error occurred while executing the command definition. See the inner exception for details.
Unknown table 'parameters' in information_schema
I downloaded the .NET Connector 6.3.6.
How can this be solved?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
答案在这里: MySQL Bugs #61793 'Unknown table 'PARAMETERS' in information_schema'
显然这是因为:“Connector/NET 正在尝试从 Information_Schema 数据库中的
parameters
表读取存储过程参数。该表存在于 MySQL 5.5 或更高版本中。”Answer is here: MySQL Bugs #61793 'Unknown table 'PARAMETERS' in information_schema'
Apparently it's because: "Connector/NET is trying to read the stored procedure parameters from
parameters
table in Information_Schema database. This table exists in MySQL 5.5 or newer."