MySQL 6.3.5 Connector with .NET 3.5

I am developing a project in Visual Studio 2010 on a 64-bit Windows 7 machine. I was able to successfully connect to the local MySQL database without any problems.

However, if I try to change the target structure to .NET 3.5, I am having problems referencing the MySql.DataDLL. I can clearly see this when the target environment is .NET 4.0.

Does anyone know why I cannot use it with .NET 3.5? Is this related to the version of the MySQL connector?

When I try to add a link to MySql.Data, I get the following error:

'MySql.Data' or one of its dependencies requires a later version of the .NET framework than the one specified in the project.

I have the latest version of the MySQL connector and it does not say anything about a specific version of the .NET framework.

+3
source share
1 answer

Have you seen this error report due to your problem? Although originally stated in 6.3.1, it is said to be fixed in 6.3.3: http://bugs.mysql.com/bug.php?id=53686

0
source

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


All Articles