您的位置:首页 > 数据库

拖拽自动生成的DataGridView和BindingSource操作数据库(增加,修改,删除)---自己实现

2012-06-08 10:28 621 查看
参考:http://hi.baidu.com/j2eedoc/blog/item/507ca70e1281c4e036d122dc.html

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 System.Data.SqlClient;

namespace DBdata
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}

private void Form1_Load(object sender, EventArgs e)
{
// TODO: 这行代码将数据加载到表“crmdbDataSet.t_color”中。您可以根据需要移动或移除它。
this.fAQTableAdapter.Fill(this.clothesShopDataSet2.FAQ);

}

  //  自动更新、删除、添加

  private void dataGridView_FAQ_RowLeave(object sender, DataGridViewCellEventArgs e)
  {

    //  实现 dataGridView 编辑的自动提交
    this.fAQTableAdapter.Adapter.Update(this.clothesShopDataSet2); //!! 只有这句话需要手动输入,其他都是自动生成
  }

}
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: