这种方法主要是双击datagridview单元格,直接进行添加,修改,删除,在实际开发中并不太常用,另一种方法下一次在具体陈述。
1 using System; 2 using System.Collections.Generic; 3 using System.ComponentModel; 4 using System.Data; 5 using System.Drawing; 6 using System.Linq; 7 using System.Text; 8 using System.Windows.Forms; 9 using System.Data; 10 using System.Data.SqlClient;
引用
- namespace SQlCommandBuilter
- {
- public partial class Form1 : Form
- {
- public Form1()
- {
- InitializeComponent();
- }
- //连接数据库字符串
- private static readonly string Constring = "server=.;database=stu;uid=sa;pwd=fiybird";
- SqlConnection con = new SqlConnection(Form1.Constring);//创建SqlConnection对象
- DataTable dt=new DataTable();//创建dataTable
- private SqlDataAdapter apt = null;//声明一个SqlDataAdapter对象
- private void Bind()
- {
- string sql = string.Format("select id,no,name,age,gender,address from stuinfo");
- apt = new SqlDataAdapter(sql, con);//实例化SqlDataAdapter
- apt.Fill(dt);//填充数据
- //SqlCommandBuilder 必不可少
- /*
- 为了生成 INSERT、UPDATE 或 DELETE 语句,SqlCommandBuilder 会自动使用 SelectCommand 属性来检索所需的元数据集。
- 如果在检索到元数据后(例如在第一次更新后)更改 SelectCommand,则应调用 RefreshSchema 方法来更新元数据。
- SelectCommand 还必须至少返回一个主键列或唯一的列。如果什么都没有返回,就会产生 InvalidOperation 异常,不生成命令。
- SqlCommandBuilder 还使用由 SelectCommand 引用的 Connection、CommandTimeout 和 Transaction 属性。
- 如果修改了这些属性中的一个或多个,或者替换了 SelectCommand 本身,用户则应调用 RefreshSchema。
- 否则,InsertCommand、UpdateCommand 和 DeleteCommand 属性都保留它们以前的值。
- 如果调用 Dispose,则会解除 SqlCommandBuilder 与 SqlDataAdapter 的关联,并且不再使用生成的命令。
- */
- SqlCommandBuilder sbBuilder=new SqlCommandBuilder(apt);
- this.dataGridView1.AutoGenerateColumns = false;//不自动生成列
- this.dataGridView1.DataSource = dt;
- }
- private void Form1_Load(object sender, EventArgs e)
- {
- Bind();
- }
- private void 保存ToolStripMenuItem_Click(object sender, EventArgs e)
- {
- apt.Update(dt);
- MessageBox.Show("保存成功!");
- }
- private void 刷新ToolStripMenuItem_Click(object sender, EventArgs e)
- {
- dt.Clear();//清空dataTable当前数据
- apt.Fill(dt);//重新填充数据
- }
- private void 删除ToolStripMenuItem_Click(object sender, EventArgs e)
- {
- //是否选中一行数据
- if (this.dataGridView1.CurrentRow.Selected)
- {
- DialogResult dr = MessageBox.Show("确定要删除么?", "友好提示", MessageBoxButtons.YesNo, MessageBoxIcon.Asterisk);
- if (dr == DialogResult.Yes)
- {
- this.dataGridView1.Rows.Remove(dataGridView1.CurrentRow);
- new SqlCommandBuilder(apt);
- apt.Update(dt);
- MessageBox.Show("删除成功!");
- }
- }
- else
- {
- MessageBox.Show("请先选中一行数据,然后在进行删除!");
- return;
- }
- }
- }
- }
时间: 2024-11-09 09:31:19