• 实现Windows程序的数据绑定


    一.绑定下拉框数据
         string sql = "select * from Grade";
                    SqlDataAdapter sda = new SqlDataAdapter(sql,helper.Con);
                    sda.Fill(ds,"Grade");
                    //新建一个下拉框选项
                    DataRow row = this.ds.Tables["Grade"].NewRow();
                    row[0] = -1;
                    row[1] = "请选择";
                    this.ds.Tables["Grade"].Rows.InsertAt(row,0);
                    //绑定下拉框
                    this.cbograde.DataSource=ds.Tables["Grade"];
                    this.cbograde.DisplayMember="GradeName";
                    this.cbograde.ValueMember="GradeId";
     
        二.绑定DataGradeView数据
          //根据年级查询GradeId
                string sql = "select * from Student where GradeId='" + this.cbograde.SelectedValue + "'";
                try
                {
                    studentsda = new SqlDataAdapter(sql, helper.Con);
                    if (ds.Tables["Student"] != null) {
                        ds.Tables["Student"].Clear();
                    }
                    studentsda.Fill(ds, "Student");
                    //绑定数据源和DataGradeView
                    this.dgvStudent.DataSource = ds.Tables["Student"];
                }
                catch (Exception x)
                {
                    MessageBox.Show(x.Message);
                }
        三.实现数据更新
          DialogResult result=MessageBox.Show("确定更改信息吗?","提示",MessageBoxButtons.YesNo,MessageBoxIcon.Information);
                if (result == DialogResult.Yes) {
                    SqlCommandBuilder scb = new SqlCommandBuilder(studentsda);
                    studentsda.Update(ds, "Student");
                }
  • 相关阅读:
    neutron-server Connection pool is full, discarding connection 连接池过满
    C#中值类型与引用类型
    抽象类与接口的比较
    XML解析与文件存取
    Json序列化与反序列化
    关于Stream系列实战
    CTS,CLS,CLR
    冒泡排序——算法
    Js 调用 webservice
    使用WebService的优点
  • 原文地址:https://www.cnblogs.com/rzbwyj/p/9448461.html
Copyright © 2020-2023  润新知