search
HomeDatabaseMysql TutorialC#连接操作mysql实例_MySQL

[转]C#连接操作mysql实例

本文转自:http://hi.baidu.com/zhqngweng/item/c4d2520cb7216877bfe97edf

第三方组件:Mysql.Data.dll
说明:去官方网站下载Mysql.Data.dll,然后在项目中添加该组件的引用,在代码页里输入using Mysql.Data.MysqlClient,我们就可以顺利的使用该类库的函数建立连接了。

以下是几个常用函数:

#region  建立MySql数据库连接
   ///


   /// 建立数据库连接.
   ///

   /// 返回MySqlConnection对象
   public MySqlConnection getmysqlcon()
   {
       string M_str_sqlcon = "server=localhost;user id=root;password=root;database=abc"; //根据自己的设置
       MySqlConnection myCon = new MySqlConnection(M_str_sqlcon);
       return myCon;
   }
   #endregion

   #region  执行MySqlCommand命令
   ///
   /// 执行MySqlCommand
   ///

   /// SQL语句
   public void getmysqlcom(string M_str_sqlstr)
   {
       MySqlConnection mysqlcon = this.getmysqlcon();
       mysqlcon.Open();
       MySqlCommand mysqlcom = new MySqlCommand(M_str_sqlstr, mysqlcon);
       mysqlcom.ExecuteNonQuery();
       mysqlcom.Dispose();
       mysqlcon.Close();
       mysqlcon.Dispose();
   }
   #endregion

#region  创建MySqlDataReader对象
   ///
   /// 创建一个MySqlDataReader对象
   ///

   /// SQL语句
   /// 返回MySqlDataReader对象
   public MySqlDataReader getmysqlread(string M_str_sqlstr)
   {
       MySqlConnection mysqlcon = this.getmysqlcon();
       MySqlCommand mysqlcom = new MySqlCommand(M_str_sqlstr, mysqlcon);
       mysqlcon.Open();
       MySqlDataReader mysqlread = mysqlcom.ExecuteReader(CommandBehavior.CloseConnection);
       return mysqlread;
   }
   #endregion

另一篇:

测试环境:Windows XP + MySql 5.0.24 + Visual C# 2008 Exdivss Edition
By lucas 2008.12.29
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();
}
/
/
          MyConnection.Close();
       }
   }
}

使用示例:

using System;
using System.Configuration;
using MySql.Data.MySqlClient;
///


/// TestDatebase 的摘要说明
///

public class TestDatebase
{
   public TestDatebase()
   {
       //
       // TODO: 在此处添加构造函数逻辑
       //
   }
   public static void Main(String[] args)
   {
       MySqlConnection mysql = getMySqlCon();
       //查询sql
       String sqlSearch = "select * from student";
       //插入sql
       String sqlInsert = "insert into student values (12,'张三',25,'大专')";
       //修改sql
       String sqlUpdate = "update student set name='李四' where id= 3";
       //删除sql
       String sqlDel = "delete from student where id = 12";
       //打印SQL语句
       Console.WriteLine(sqlDel);
       //四种语句对象
       //MySqlCommand mySqlCommand = getSqlCommand(sqlSearch, mysql);
       //MySqlCommand mySqlCommand = getSqlCommand(sqlInsert, mysql);
       //MySqlCommand mySqlCommand = getSqlCommand(sqlUpdate, mysql);
       MySqlCommand mySqlCommand = getSqlCommand(sqlDel, mysql);
       mysql.Open();
       //getResultset(mySqlCommand);
       //getInsert(mySqlCommand);
       //getUpdate(mySqlCommand);
       getDel(mySqlCommand);
       //记得关闭
       mysql.Close();
      String readLine = Console.ReadLine();
   }
   ///
   /// 建立mysql数据库链接
   ///

   ///
   public static MySqlConnection getMySqlCon()
   {
       String mysqlStr = "Database=test;Data Source=127.0.0.1;User Id=root;Password=root;pooling=false;CharSet=utf8;port=3306";
       // String mySqlCon = ConfigurationManager.ConnectionStrings["MySqlCon"].ConnectionString;
       MySqlConnection mysql = new MySqlConnection(mysqlStr);
       return mysql;
   }
   ///
   /// 建立执行命令语句对象
   ///

   ///
   ///
   ///
   public static MySqlCommand getSqlCommand(String sql,MySqlConnection mysql)
   {
       MySqlCommand mySqlCommand = new MySqlCommand(sql, mysql);
       //  MySqlCommand mySqlCommand = new MySqlCommand(sql);
       // mySqlCommand.Connection = mysql;
       return mySqlCommand;
   }
   ///
   /// 查询并获得结果集并遍历
   ///

   ///
   public static void getResultset(MySqlCommand mySqlCommand)
   {
       MySqlDataReader reader = mySqlCommand.ExecuteReader();
       try
       {
           while (reader.Read())
           {
               if (reader.HasRows)
               {
                   Console.WriteLine("编号:" + reader.GetInt32(0) + "|姓名:" + reader.GetString(1) + "|年龄:" + reader.GetInt32(2) + "|学历:" + reader.GetString(3));
               }
           }
       }
       catch (Exception)
       {

Console.WriteLine("查询失败了!");
       }
       finally
       {
           reader.Close();
       }
   }
   ///


   /// 添加数据
   ///

   ///
   public static void getInsert(MySqlCommand mySqlCommand)
   {
       try
       {
           mySqlCommand.ExecuteNonQuery();
       }
       catch (Exception ex)
       {
           String message = ex.Message;
           Console.WriteLine("插入数据失败了!" + message);
       }
     
   }
   ///
   /// 修改数据
   ///

   ///
   public static void getUpdate(MySqlCommand mySqlCommand)
   {
       try
       {
           mySqlCommand.ExecuteNonQuery();
       }
       catch (Exception ex)
       {

String message = ex.Message;
           Console.WriteLine("修改数据失败了!" + message);
       }
   }
   ///


   /// 删除数据
   ///

   ///
   public static void getDel(MySqlCommand mySqlCommand)
   {
       try
       {
           mySqlCommand.ExecuteNonQuery();
       }
       catch (Exception ex)
       {
           String message = ex.Message;
           Console.WriteLine("删除数据失败了!" + message);
       }
   }
}

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
How do you alter a table in MySQL using the ALTER TABLE statement?How do you alter a table in MySQL using the ALTER TABLE statement?Mar 19, 2025 pm 03:51 PM

The article discusses using MySQL's ALTER TABLE statement to modify tables, including adding/dropping columns, renaming tables/columns, and changing column data types.

How do I configure SSL/TLS encryption for MySQL connections?How do I configure SSL/TLS encryption for MySQL connections?Mar 18, 2025 pm 12:01 PM

Article discusses configuring SSL/TLS encryption for MySQL, including certificate generation and verification. Main issue is using self-signed certificates' security implications.[Character count: 159]

How do you handle large datasets in MySQL?How do you handle large datasets in MySQL?Mar 21, 2025 pm 12:15 PM

Article discusses strategies for handling large datasets in MySQL, including partitioning, sharding, indexing, and query optimization.

What are some popular MySQL GUI tools (e.g., MySQL Workbench, phpMyAdmin)?What are some popular MySQL GUI tools (e.g., MySQL Workbench, phpMyAdmin)?Mar 21, 2025 pm 06:28 PM

Article discusses popular MySQL GUI tools like MySQL Workbench and phpMyAdmin, comparing their features and suitability for beginners and advanced users.[159 characters]

How do you drop a table in MySQL using the DROP TABLE statement?How do you drop a table in MySQL using the DROP TABLE statement?Mar 19, 2025 pm 03:52 PM

The article discusses dropping tables in MySQL using the DROP TABLE statement, emphasizing precautions and risks. It highlights that the action is irreversible without backups, detailing recovery methods and potential production environment hazards.

How do you represent relationships using foreign keys?How do you represent relationships using foreign keys?Mar 19, 2025 pm 03:48 PM

Article discusses using foreign keys to represent relationships in databases, focusing on best practices, data integrity, and common pitfalls to avoid.

How do you create indexes on JSON columns?How do you create indexes on JSON columns?Mar 21, 2025 pm 12:13 PM

The article discusses creating indexes on JSON columns in various databases like PostgreSQL, MySQL, and MongoDB to enhance query performance. It explains the syntax and benefits of indexing specific JSON paths, and lists supported database systems.

How do I secure MySQL against common vulnerabilities (SQL injection, brute-force attacks)?How do I secure MySQL against common vulnerabilities (SQL injection, brute-force attacks)?Mar 18, 2025 pm 12:00 PM

Article discusses securing MySQL against SQL injection and brute-force attacks using prepared statements, input validation, and strong password policies.(159 characters)

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)