zoukankan      html  css  js  c++  java
  • 拖拽自动生成的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); //!! 只有这句话需要手动输入,其他都是自动生成
      }

        }
    }

  • 相关阅读:
    CSP游戏 4
    CSP 交通规划
    CSP 地铁修建
    CSP 通信网络
    CSP URL映射
    CSP 权限查询
    CSP Markdown
    CSP JSON 查询
    SQL里的子查询
    SQL里的操作符
  • 原文地址:https://www.cnblogs.com/carl2380/p/2541354.html
Copyright © 2011-2022 走看看