利用VS的C#语言连接MySQL数据库

  • Post author:
  • Post category:mysql


1.连接数据库本质上是使用MySql.Data.dll动态链接库,动态库中的方法:

MySqlConnection:连接MySQL服务器数据库。

MySqlCommand:执行一条sql语句。

MySqlDataReader:包含sql语句执行的结果,并提供一个方法从结果阅读一行。

MySqlTransaction:代表一个SQL失误在一个MySQL数据库。

MySqlException: MySQL报错时返回的Exception。

MySqlCommandBuilder: Automatically generates single-table commands used to reconcile changes made to a DataSet with the associated MySQL database.

MySqlDataAdapter: Represents a set of data commands and a database connection that are used to fill a data set and update a MySQL database.

MySqlHelper: Helper class that makes it easier to work with the provider.


2.添加动态链接库文件

1.用HeidiSQL连接MySQL数据库不成功,可以将C:\Program Files\MySQL\MySQL Server 5.7\lib\libmysql.dll复制到HeidiSQL的安装目录下。

2. 方法一:Visual Studio,在 项目(右键)-管理NuGet程序包(N)  然后在浏览里面搜索MySql.Data并进行安装。(已测试,使用的是.NET Framework 4.6,VS2017.4.8版本&#x



版权声明:本文为cathy_2017原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。