Unknown table when creating ADO.NET data object in MySQL

I cannot create a MySQL data model using Visual Studio with an ADO.NET data object because I get this error:

An error occurred while executing the command definition. See Internal Exception for more details. Unknown table options in information_schema

I downloaded the .NET Connector 6.3.6.

How can this be solved?

+4
source share
1 answer

The answer is here: MySQL Bugs # 61793 'Unknown table' PARAMETERS 'in information_schema'

This is apparently because: "Connector / NET is trying to read the stored procedure parameters from the parameters table in the Information_Schema database. This table exists in MySQL 5.5 or later."

+2
source

Source: https://habr.com/ru/post/1341979/


All Articles