我可以将mysql连接到visual studio 2010 express可视化工具

时间:2010-12-21 13:36:04

标签: .net mysql visual-studio-2010 connector

我的问题是Express Edition vs Professional,我是否应该能够在快递版中使用MySql .net连接器的数据库连接?或者它只适用于专业版?我正在使用快递,我已经尝试了最新的.net连接器,它仍然没有显示在数据库连接列表中。

3 个答案:

答案 0 :(得分:3)

由于快递产品的限制,MySQL Connector / NET无法在Microsoft Studio的Express版本中运行。要使用基于服务器体系结构的数据源,必须使用非“Express”版本。除了本地有限的“Compact”或“Express”版本之外,连接到微软自己的MSSQL也行不通。

答案 1 :(得分:2)

在Express Edition中,您可以将dll conector添加到项目引用中:

添加参考

mysql.data.dll

然后像课程一样使用它:

Imports MySql.Data.MySqlClient

Public Class Form1

Dim mycon As New MySqlConnection

Dim myadp As New MySqlDataAdapter

在mysql文档中搜索更多信息。

答案 2 :(得分:0)

要在C#中使用,在添加引用后,您可以像这样使用它:

// Put this at the top of the file, with the other "using..." lines
using MySql.Data.MySqlClient;

// [...]
public Form1() {
  MySqlConnection myCon = new MySqlConnection();
  MySqlDataAdapter myAdapter = new MySqlDataAdapter("SELECT * FROM foo;", myCon);