要求:
数据库连接
1、请设计一个项目连接到自己的MySQL数据库,数据库包含至少三张表;
2、使用dataGridView控件显示表中的数据;
3、实现基本crud操作;
首先按照教程,使用vs2019版本连接mql数据库,数据库里包含三张表:
然后使用 dataGridView控件,用该控件连接数据库:
然后运行窗体,得到:
之后实现crud操作:
核心代码为:
using MySql.Data.MySqlClient;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace WindowsFormsApp9
{
public partial class Form1 : Form
{
MySqlConnection conn; //连接数据库对象
MySqlDataAdapter mda; //适配器变量
DataSet ds; //临时数据集
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
// TODO: 这行代码将数据加载到表“data1DataSet2.sc”中。您可以根据需要移动或删除它。
this.scTableAdapter.Fill(this.data1DataSet2.sc);
// TODO: 这行代码将数据加载到表“data1DataSet2.course”中。您可以根据需要移动或删除它。
this.courseTableAdapter.Fill(this.data1DataSet2.course);
}
private void dataGridView1_CellContentClick_1(object sender, DataGridViewCellEventArgs e)
{
}
private void button1_Click_1(object sender, EventArgs e)
{
string M_str_data1 = "server=localhost;user id=root;password=ttgg761123;port=3306;persistsecurityinfo=True;database=data1;SslMode=None"; //创建数据库连接对象
conn = new MySqlConnection(M_str_data1);
try
{
//打开数据库连接
conn.Open();
MessageBox.Show("数据库已经连接了!");
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
}
private void button2_Click(object sender, EventArgs e)
{
string sql = "select * from course";
mda = new MySqlDataAdapter(sql, conn);
ds = new DataSet();
mda.Fill(ds, "course");
//显示数据
dataGridView1.DataSource = ds.Tables["course"];
conn.Close();
}
private void button3_Click(object sender, EventArgs e)
{
if(mda == null || ds == null)
{
MessageBox.Show("请先导入数据");
return;
}
try
{
string msg = "确实要添加此条数据吗?";
if (1 == (int)MessageBox.Show(msg, "提示", MessageBoxButtons.OKCancel, MessageBoxIcon.Exclamation))
{
MySqlCommandBuilder builder = new MySqlCommandBuilder(mda);
mda.Update(ds, "course");
MessageBox.Show("添加成功", "提示");
}
}
catch (Exception ex)
{
MessageBox.Show(ex.ToString(), "错误信息");
}
}
private void button4_Click(object sender, EventArgs e)
{
if (mda == null || ds == null)
{
MessageBox.Show("请先导入数据");
return;
}
try
{
string msg = "确实要修改吗?";
if (1 == (int)MessageBox.Show(msg, "提示", MessageBoxButtons.OKCancel, MessageBoxIcon.Exclamation))
{
MySqlCommandBuilder builder = new MySqlCommandBuilder(mda); //命令生成器。
//适配器会自动更新用户在表上的操作到数据库中
mda.Update(ds, "course");
MessageBox.Show("修改成功", "提示");
}
}
catch (Exception ex)
{
MessageBox.Show(ex.ToString(), "错误信息");
}
}
private void button5_Click(object sender, EventArgs e)
{
int index = dataGridView1.CurrentCell.RowIndex;
int id = (int)dataGridView1.Rows[index].Cells[0].Value;
string sql = "delete from user where id=" + id + "";
conn.Open();
MySqlCommand cmd = conn.CreateCommand();
cmd.CommandText = sql;
int i = cmd.ExecuteNonQuery();
if (i < 0)
{
conn.Close();
MessageBox.Show("删除失败");
return;
}
conn.Close();
}
}
}
结果展示:
仓库地址:https://gitee.com/hu-baobao/hubaobaoh.git