一道关于C#的程序题,有几句代码看不懂,请各位大侠帮忙!
SqlDataAdaptersda;SqlConnectionconn;DataSetds;privatevoidForm1_Load(objectsender,Even...
SqlDataAdapter sda;
SqlConnection conn;
DataSet ds;
private void Form1_Load(object sender, EventArgs e)
{
conn = new SqlConnection("server=(local);initial catalog=db_test;integrated security=true;");
SqlCommand cmd = new SqlCommand("select*from tb_002", conn);
sda = new SqlDataAdapter();
sda.SelectCommand = cmd;
ds = new DataSet();
sda.Fill(ds);
dataGridView1.DataSource = ds.Tables[0];
}
private void button1_Click(object sender, EventArgs e)
{
*******************************************************************************************************************
DataTable dt = ds.Tables[0];
sda.FillSchema(dt, SchemaType.Mapped);
DataRow dr = dt.Rows.Find(txtNo.Text);
dr["编号"] = txtNo.Text.Trim();
dr["年龄"] = txtAge.Text.Trim();
dr["姓名"] = txtName.Text.Trim();
dr["奖金"] = txtJJ.Text.Trim();
dr["性别"] = txtSex.Text.Trim();
SqlCommandBuilder cmdbuider = new SqlCommandBuilder(sda);
sda.Update(dt);
}
private void dataGridView1_CellContentClick(object sender, DataGridViewCellEventArgs e)
{
txtNo.Text = dataGridView1.SelectedCells[0].Value.ToString();
txtAge.Text = dataGridView1.SelectedCells[1].Value.ToString();
txtName.Text = dataGridView1.SelectedCells[2].Value.ToString();
txtJJ.Text = dataGridView1.SelectedCells[3].Value.ToString();
txtSex.Text = dataGridView1.SelectedCells[4].Value.ToString();
}
******************************************************************************************************************************
其中:分隔线以内的代码含义不是特别清楚:特别是
DataTable dt = ds.Tables[0];
sda.FillSchema(dt, SchemaType.Mapped);
DataRow dr = dt.Rows.Find(txtNo.Text);
txtNo.Text = dataGridView1.SelectedCells[0].Value.ToString();
这四句看不太懂!!急!!!谢谢各位! 展开
SqlConnection conn;
DataSet ds;
private void Form1_Load(object sender, EventArgs e)
{
conn = new SqlConnection("server=(local);initial catalog=db_test;integrated security=true;");
SqlCommand cmd = new SqlCommand("select*from tb_002", conn);
sda = new SqlDataAdapter();
sda.SelectCommand = cmd;
ds = new DataSet();
sda.Fill(ds);
dataGridView1.DataSource = ds.Tables[0];
}
private void button1_Click(object sender, EventArgs e)
{
*******************************************************************************************************************
DataTable dt = ds.Tables[0];
sda.FillSchema(dt, SchemaType.Mapped);
DataRow dr = dt.Rows.Find(txtNo.Text);
dr["编号"] = txtNo.Text.Trim();
dr["年龄"] = txtAge.Text.Trim();
dr["姓名"] = txtName.Text.Trim();
dr["奖金"] = txtJJ.Text.Trim();
dr["性别"] = txtSex.Text.Trim();
SqlCommandBuilder cmdbuider = new SqlCommandBuilder(sda);
sda.Update(dt);
}
private void dataGridView1_CellContentClick(object sender, DataGridViewCellEventArgs e)
{
txtNo.Text = dataGridView1.SelectedCells[0].Value.ToString();
txtAge.Text = dataGridView1.SelectedCells[1].Value.ToString();
txtName.Text = dataGridView1.SelectedCells[2].Value.ToString();
txtJJ.Text = dataGridView1.SelectedCells[3].Value.ToString();
txtSex.Text = dataGridView1.SelectedCells[4].Value.ToString();
}
******************************************************************************************************************************
其中:分隔线以内的代码含义不是特别清楚:特别是
DataTable dt = ds.Tables[0];
sda.FillSchema(dt, SchemaType.Mapped);
DataRow dr = dt.Rows.Find(txtNo.Text);
txtNo.Text = dataGridView1.SelectedCells[0].Value.ToString();
这四句看不太懂!!急!!!谢谢各位! 展开
1个回答
展开全部
DataTable dt = ds.Tables[0]; //取DataSet 集合中的第一个 dt 表。
sda.FillSchema(dt, SchemaType.Mapped); //FillSchema是用来向DataTable中填入详细的元数据信息的,例如(column names, primary key, constraints等),但不填入数据。
DataRow dr = dt.Rows.Find(txtNo.Text); //找到dt表中主键为此编号的行。
txtNo.Text = dataGridView1.SelectedCells[0].Value.ToString(); //grid选中行第1单元格值。
意法半导体(中国)投资有限公司
2023-06-12 广告
2023-06-12 广告
单片机汇编程序是用汇编语言编写的程序,用于控制单片机的操作。汇编语言是一种比较接近计算机硬件语言的低级语言,相对于高级语言来说更容易理解和实现。下面是单片机汇编程序的基本步骤:1. 将代码和数据汇编到规定的段中。2. 在存储器中用未初始化的...
点击进入详情页
本回答由意法半导体(中国)投资有限公司提供
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询