博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
c#连接MySql数据库的两种方法
阅读量:6089 次
发布时间:2019-06-20

本文共 4208 字,大约阅读时间需要 14 分钟。

1、用MySQLDriverCS连接MySQL数据库

先下载和安装MySQLDriverCS,地址:
http://sourceforge.net/projects/mysqldrivercs/
在安装文件夹下面找到MySQLDriver.dll,然后将MySQLDriver.dll添加引用到项目中
注:我下载的是版本是 MySQLDriverCS-n-EasyQueryTools-4.0.1-DotNet2.0.exe

 

using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Data.Odbc;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;using MySQLDriverCS;namespace mysql{    public partial class Form1 : Form    {        public Form1()        {            InitializeComponent();        }        private void Form1_Load(object sender, EventArgs e)        {            MySQLConnection conn = null;            conn = new MySQLConnection(new MySQLConnectionString("localhost", "inv", "root", "831025").AsString);            conn.Open();            MySQLCommand commn = new MySQLCommand("set names gb2312", conn);            commn.ExecuteNonQuery();            string sql = "select * from exchange ";            MySQLDataAdapter mda = new MySQLDataAdapter(sql, conn);            DataSet ds = new DataSet();            mda.Fill(ds, "table1");            this.dataGrid1.DataSource = ds.Tables["table1"];            conn.Close();        }    }}

 

2、通过ODBC访问mysql数据库:

参考:http://www.microsoft.com/china/community/Column/63.mspx
1. 安装Microsoft ODBC.net:我安装的是mysql-connector-odbc-3.51.22-win32.msi
2. 安装MDAC 2.7或者更高版本:我安装的是mdac_typ.exe 2.7简体中文版
3. 安装MySQL的ODBC驱动程序:我安装的是 odbc_net.msi
4. 管理工具 -> 数据源ODBC –>配置DSN…
5. 解决方案管理中添加引用 Microsoft.Data.Odbc.dll(1.0.3300)
6. 代码中增加引用 using Microsoft.Data.Odbc;

using System;using System.Collections.Generic;using System.ComponentModel;using System.Drawing;using System.Linq;   //vs2005好像没有这个命名空间,在c#2008下测试自动生成的using System.Text;using System.Windows.Forms;using Microsoft.Data.Odbc;namespace mysql{    public partial class Form1 : Form    {        public Form1()        {            InitializeComponent();        }        private void Form1_Load(object sender, EventArgs e)        {            string MyConString = "DRIVER={MySQL ODBC 3.51 Driver};" +                                 "SERVER=localhost;" +                                 "DATABASE=inv;" +                                 "UID=root;" +                                 "PASSWORD=831025;" +                                 "OPTION=3";            OdbcConnection MyConnection = new OdbcConnection(MyConString);            MyConnection.Open();            Console.WriteLine(""n success, connected successfully !"n");            string query = "insert into test values( 'hello', 'lucas', 'liu')";            OdbcCommand cmd = new OdbcCommand(query, MyConnection);            //处理异常:插入重复记录有异常            try{              cmd.ExecuteNonQuery();            }            catch(Exception ex){                             Console.WriteLine("record duplicate.");            }finally{                             cmd.Dispose();                        } //***********************用read方法读数据到textbox**********************            string tmp1 = null;            string tmp2 = null;            string tmp3 = null;            query = "select * from test ";            OdbcCommand cmd2 = new OdbcCommand(query, MyConnection);            OdbcDataReader reader = cmd2.ExecuteReader();            while (reader.Read())            {                tmp1 = reader[0].ToString();                tmp2 = reader[1].ToString();                tmp3 = reader[2].ToString();            }            this.textBox1.Text = tmp1 + " " + tmp2 + " " + tmp3;            */ //************************用datagridview控件显示数据表**************************string MyConString = "DRIVER={MySQL ODBC 3.51 Driver};" +                                 "SERVER=localhost;" +                                 "DATABASE=inv;" +                                 "UID=root;" +                                 "PASSWORD=831025;" +                                 "OPTION=3";          OdbcConnection MyConnection = new OdbcConnection(MyConString);OdbcDataAdapter oda = new OdbcDataAdapter("select * from customer ", MyConnection);DataSet ds = new DataSet();          oda.Fill(ds, "employee");          this.dataGridView1.DataSource = ds.Tables["employee"];*/            MyConnection.Close();        }    }}

 

转载地址:http://tblwa.baihongyu.com/

你可能感兴趣的文章
SQL Server · 特性分析 · 2012列存储索引技术
查看>>
一个锁等待现象的诊断案例
查看>>
C# 命令模式
查看>>
有序数组中找中位数
查看>>
JAVA数据库连接的另一种实现及简单的数据插入及显示
查看>>
阿里云Windows 自动扩容分区脚本
查看>>
[数据结构] 栈
查看>>
指针怎么用
查看>>
【IOS-COCOS2D游戏开发之十三】CCSPRITE利用BEZIER(贝塞尔)做抛物线动作并让CCSPRITE同时播放两个ACTION动作!...
查看>>
Android 文件存放路径【转】
查看>>
CPU GPU设计工作原理《转》
查看>>
[MySQL 5.6 ] Performance Schema学习:命名规范、状态变量及其他(2)
查看>>
mybatis性能优化二之多对多查询:用一次请求解决n次请求查询
查看>>
防止JavaScript自动插入分号
查看>>
Android--使用开源vitamio做万能视频播放器
查看>>
VS2008中使用NUnit
查看>>
SQL SERVER 的模糊查询 LIKE
查看>>
【Python】软件管理工具--pip
查看>>
插入排序之表插入排序
查看>>
Eclipse整合Tomcat开发Dynamic Web Project环境总结
查看>>