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

参考: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); //!! 只有这句话需要手动输入,其他都是自动生成
  }

 

    }
}

转载于:https://www.cnblogs.com/carl2380/archive/2012/06/08/2541354.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值