c#连接mysql 数据库 绝对能用

网友投稿 263 2022-09-12

c#连接mysql 数据库 绝对能用

以下可以查询出在example数据库中person表中的所有信息

并且显示在datagrid中MySQLDriverCS 自己在网上随便找找就有一堆

using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;using MySQLDriverCS;namespace sqltest{ public partial class Form1 : Form { MySQLDataAdapter mda; DataSet ds; public Form1() { InitializeComponent(); aa(); } public void aa() { MySQLConnection conn = null; try { string connstr = "Data Source=webexample;" + "Password=;User ID=root;Location=localhost"; conn = new MySQLConnection(connstr); conn.Open(); MySQLCommand commn = new MySQLCommand("set names gb2312", conn); commn.ExecuteNonQuery(); string sql = "select * from person "; mda = new MySQLDataAdapter(sql, conn); ds = new DataSet("MyData"); mda.Fill(ds); dataGridView1.DataSource = ds.Tables[0]; } catch (Exception ex){ MessageBox.Show(ex.Message); } finally{ conn.Close(); } } }}

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:PR人:靠胸模饮料一年卖出40亿,这家又土又污的品牌,摊上事了!
下一篇:opencv学习4把鼠标当画笔
相关文章

 发表评论

暂时没有评论,来抢沙发吧~