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