用C#代码 远程连接到网络上的 mysql数据库
using MySql.Data.MySqlClient;
和
using MySQLDriverCS;
有什么区别。 展开
环境准备
安装 Visual Studio 2008 或者 Visual Studio 2010
在本机上安装 MySQL 数据库,也可使用其他机器上已经装好的 MySQL 数据库
MySQL 数据库管理工具可以创建数据库和运行 SQL 语句,这里使用 phpMyAdmin
下载并安装 MySQL Connector.
开始
运行 XAMPP 程序将自动为你安装 Apache 、MySQL 和 FileZilla。安装完毕后检查服务器是否运行,下图所示的 XAMPP 控制面板显示了当前正在运行的服务。
下面的步骤展示如何通过 C# 连接到 MySQL。
Step 1
在 phpMyAdmin 打开 MySQL 管理页然后创建新数据库
Step 2
创建完数据库后紧接着创建一个名为 PhoneBook 的表:
Step 3
接下来我们打开 Visual Studio 然后创建新项目,点击 Solution Explorer (F4), 在 “Reference” 节点上右键加入新的引用,这里我们需要引用两个 dll 文件到项目中,分别是:(MySql.dll (Win apps), MySql.web.dll(Web apps)).
Step 4
添加命名空间到项目中
Step 5
创建一个 MySQL 连接字符串
Step 6
下面代码将插入数据到表中:
Step 7
下面函数从表中加载数据并显示在 GridView 中:
Step 8
最终的 Windows Form 结果:
,安装好后,将MySQLDriverCS.dll通过添加引用的方式,添加到项目中。
2、设置mysql数据库为允许远程访问,采用如下代码:
格式:grant 权限 on 数据库名.表名 用户@登录主机 identified by "用户密码";
grant select,update,insert,delete on *.* to 'root'@'192.168.0.1' identified by "123456";
查看结果,执行:
use mysql;
select host,user,password from user;
将host字段的值改为%就表示在任何客户端机器上能以xuys用户登录到mysql服务器,建议在开发时设为%。
3、下面是具体的数据库操作代码:
------------------------------------------
using System;
using System.Collections.Generic;
using System.Text;
using System.Data;
using System.Data.SqlClient;
using System.Windows.Forms;
using MySQLDriverCS;
namespace DB
{
class DB
{
private MySQLConnection conn;
private MySQLCommand cmd;
private MySQLDataAdapter da;
public DB()
{
//
// TODO: 在此处添加构造函数逻辑
//
this.conn = new MySQLConnection(new MySQLConnectionString("10.214.59.106", "dt", "root", "123456").AsString);
this.cmd = new MySQLCommand();
this.da = new MySQLDataAdapter();
}
//返回数据表
public DataTable QeuryTable(string sqlTxt)
{
DataTable dt = new DataTable();
try
{
this.conn.Open();
this.cmd.CommandText = sqlTxt;
this.cmd.Connection = this.conn;
this.da.SelectCommand = this.cmd;
this.da.Fill(dt);
}
catch (SqlException ex)
{
throw ex;
}
finally
{
this.conn.Close();
}
return dt;
}
public DataSet QeuryDataSet(string sqlTxt)
{
DataSet ds = new DataSet();
try
{
this.conn.Open();
this.cmd.CommandText = sqlTxt;
this.cmd.Connection = this.conn;
this.da.SelectCommand = this.cmd;
this.da.Fill(ds);
}
catch (SqlException ex)
{
throw ex;
}
finally
{
this.conn.Close();
}
return ds;
}
public int ExecuteNonQuery(string sqlTxt)
{
int i = 0;
try
{
this.conn.Open();
this.cmd.CommandText = sqlTxt;
this.cmd.Connection = this.conn;
i = this.cmd.ExecuteNonQuery();
}
catch (SqlException ex)
{
throw ex;
}
finally
{
this.conn.Close();
}
return i;
}
}
}
------------------------------------------
using MySql.Data.MySqlClient;
和
using MySQLDriverCS;
有什么区别。
data source=ip;initial catalog=数据库名称;uid=账号;pwd=密码
广告 您可能关注的内容 |