mySQL DataSource on Visual Studio 2012

后端 未结 7 1510
花落未央
花落未央 2020-11-27 19:18

I\'ve been reading about mySQL DataSource and the ability to use mySQL with Entity Framework, but I can\'t really generate EF with mySQL without the use of the DataSource Di

相关标签:
7条回答
  • 2020-11-27 19:21

    Visual Studio 2012 is not yet supported by MySQL Connector v.6.5.4. You can't add a connection to MySQL in the Server Explorer to begin with.

    According on this post, support will be added on MySQL Connector v.6.5.5

    0 讨论(0)
  • 2020-11-27 19:33

    Connector/NET 6.5.5 does not support VS2012, but Connector/NEt 6.6.x does.

    However Visual Studio Express editions are not supported, hence the only way to work in Entity Framework and Visual Studio Express and MySql (or other database different than SQL Server for that matter) is using code first.

    0 讨论(0)
  • 2020-11-27 19:37

    According to this page: http://dev.mysql.com/downloads/connector/net/

    "Starting with version 6.7, Connector/Net will no longer include the MySQL for Visual Studio integration. That functionality is now available in a separate product called MySQL for Visual Studio available using the MySQL Installer for Windows (see http://dev.mysql.com/tech-resources/articles/mysql-installer-for-windows.html)."

    0 讨论(0)
  • 2020-11-27 19:39

    It wouldn't matter if you had the MySQL driver showing as far as I can tell. I'm running VS 2012.3 and if I try to create a Data Connection in VS Server Browser, I can get as far as selecting the MySQL driver and no more. If I try typing a servername/username/password (any of the fields), the window just disappears and YES, it's only when the MySQL driver is being used so NO it's not vs (not exclusively) causing the problem. Go ahead and say that it's my environment but you'd not be able to justify that even remotely compared to the FACT of what is happening. ALL my other software/extentions/add-in/libraries work just fine. No surprise either seeing how buggy the "3 minute" Windows Installer was. Had to uninstall/reinstall a server instance to get to the configuration wizard and there is no other apparent way to configure an instance without it. I'd rather have the old setup. /rant

    0 讨论(0)
  • 2020-11-27 19:42

    One clarification: Visual Studio Express DOES NOT support MySQL .NET Connector as extension.

    You still may use it adding reference to MySql.Data.dll file that you may find in MySQL Connector installation folder (for me it was W:\Program Files\MySQL\Connector NET 6.5.4\Assemblies\v4.0). After that you may use it like this:

    using MySql.Data.MySqlClient;
    ...
    var mycon = new MySqlConnection();
    
    0 讨论(0)
  • 2020-11-27 19:42

    Downloaded and install Download MySQL for Visual Studio http://dev.mysql.com/downloads/windows/visualstudio/1.1.html

    0 讨论(0)
提交回复
热议问题