MySqlConnector 6.9.9 for VS2008 (framework 3.5)

I just downloaded the latest version of MySqlConnector ( https://dev.mysql.com/downloads/connector/net/ ), which is currently version 6.9.9.

The previous version is 6.9.8, which I could use in Visual Studio 2008 with the 3.5 framework. But now the download contains only assemblies for v4.0 and v4.5.

Usually I just update the link to mysql.data.dll in my project, but now I can only change it to version v4 / 4.5, which are obviously invalid in combination with the V3.5 project.

Can someone tell me where to find or how to download assembly v3.5 for version 6.9.9? Or is this V6.9.8 just the latest version for the 3.5 framework? (although I cannot find this information anywhere)

By the way: if this is not the right place for the request, indicate the correct community.

Edit after @Programmer comment:

The contents of machine.config in C: \ Windows \ Microsoft.NET \ Framework \ v2.0.50727 \ CONFIG \

<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
  <dependentAssembly>
    <assemblyIdentity name="MySql.Data" publicKeyToken="c5687fc88969c44d" culture="neutral" />
    <bindingRedirect oldVersion="6.7.4.0" newVersion="6.9.9.0" />
  </dependentAssembly>
  <dependentAssembly>
    <assemblyIdentity name="MySql.Data.Entity" publicKeyToken="c5687fc88969c44d" culture="neutral" />
    <bindingRedirect oldVersion="6.7.4.0" newVersion="6.9.9.0" />
  </dependentAssembly>
  <dependentAssembly>
    <assemblyIdentity name="MySql.Web" publicKeyToken="c5687fc88969c44d" culture="neutral" />
    <bindingRedirect oldVersion="6.7.4.0" newVersion="6.9.9.0" />
  </dependentAssembly>
</assemblyBinding>
</runtime>
...
<add name="MySQL Data Provider" invariant="MySql.Data.MySqlClient" description=".Net Framework Data Provider for MySQL" type="MySql.Data.MySqlClient.MySqlClientFactory, MySql.Data, Version=6.9.9.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d" />
+4
source share
1 answer

According to the documentation on the MySQL website:

Starting with version 6.7, Connector / Net will no longer include MySQL Integration for Visual Studio. This functionality is now available in a separate product called MySQL for Visual Studio, available through the MySQL Installer for Windows.

MySQL Installer for Windows is available for download at:

https://dev.mysql.com/downloads/windows/installer/

0
source

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


All Articles