I am trying to add a MySQL-Data Source to my Visual Studio project.
I am using MySQL Server 8.0.12 and also the 8.0.12 Connector/MySql.data.
In the Data Source Configuration Wizard an error pops up when choosing the database objects:
"An error occurred while retrieving the information from the database: Table 'mysql.proc' doesn't exist"
I already tried executing the 'mysql_upgrade.exe' as suggested in other solutions but this specific table wasnt affected. Then i found this blogpost:
Is there any work-around for this except down-grading the MySQL Server version?
Thanks in advance!
解决方案
Just put
CheckParameters=False; in your .NET connection string i.e. in your config file.
No need to downgrade the MySQL server,
I guess it is bug from MySQL .NET connector.